From 5486e94c1ad7342d7a892631cc8e7ff33a022ae8 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sun, 12 Jun 2016 00:39:41 +0300 Subject: Issue #27140: Added BUILD_CONST_KEY_MAP opcode. --- PC/launcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'PC/launcher.c') diff --git a/PC/launcher.c b/PC/launcher.c index 909705d82f..9fcc41e22e 100644 --- a/PC/launcher.c +++ b/PC/launcher.c @@ -1089,7 +1089,7 @@ static PYC_MAGIC magic_values[] = { { 3190, 3230, L"3.3" }, { 3250, 3310, L"3.4" }, { 3320, 3350, L"3.5" }, - { 3360, 3370, L"3.6" }, + { 3360, 3371, L"3.6" }, { 0 } }; -- cgit v1.2.1 From 0c3c0375111bde5f7586e6c951f08a0035039a39 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 6 Sep 2016 22:07:53 +0300 Subject: Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. --- PC/launcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'PC/launcher.c') diff --git a/PC/launcher.c b/PC/launcher.c index fa69438043..2214b08082 100644 --- a/PC/launcher.c +++ b/PC/launcher.c @@ -1089,7 +1089,7 @@ static PYC_MAGIC magic_values[] = { { 3190, 3230, L"3.3" }, { 3250, 3310, L"3.4" }, { 3320, 3351, L"3.5" }, - { 3360, 3371, L"3.6" }, + { 3360, 3373, L"3.6" }, { 0 } }; -- cgit v1.2.1 From b164476aaf77ceffac36ddbbdc7f4df90fbfebd3 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Thu, 8 Sep 2016 20:50:03 -0700 Subject: Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. Patch by Ivan Levkivskyi. --- PC/launcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'PC/launcher.c') diff --git a/PC/launcher.c b/PC/launcher.c index 2214b08082..92f2c2a1fe 100644 --- a/PC/launcher.c +++ b/PC/launcher.c @@ -1089,7 +1089,7 @@ static PYC_MAGIC magic_values[] = { { 3190, 3230, L"3.3" }, { 3250, 3310, L"3.4" }, { 3320, 3351, L"3.5" }, - { 3360, 3373, L"3.6" }, + { 3360, 3375, L"3.6" }, { 0 } }; -- cgit v1.2.1 From 0780d6cb0e6e406d0030dee40156a6dd00066147 Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Sun, 11 Sep 2016 14:45:49 +1000 Subject: Issue #23722: Initialize __class__ from type.__new__() The __class__ cell used by zero-argument super() is now initialized from type.__new__ rather than __build_class__, so class methods relying on that will now work correctly when called from metaclass methods during class creation. Patch by Martin Teichmann. --- PC/launcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'PC/launcher.c') diff --git a/PC/launcher.c b/PC/launcher.c index 92f2c2a1fe..d11df437b9 100644 --- a/PC/launcher.c +++ b/PC/launcher.c @@ -1089,7 +1089,7 @@ static PYC_MAGIC magic_values[] = { { 3190, 3230, L"3.3" }, { 3250, 3310, L"3.4" }, { 3320, 3351, L"3.5" }, - { 3360, 3375, L"3.6" }, + { 3360, 3379, L"3.6" }, { 0 } }; -- cgit v1.2.1