From 7e7a7b923b439725583579f1d07fea643efb0970 Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Wed, 8 Mar 2017 19:10:49 +1000 Subject: [PATCH 1/2] bpo-29537: Also mention 3.5.2 in NEWS entry --- Misc/NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index 82f9f9a1f58b07..43be636c12cf15 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -11,7 +11,7 @@ Core and Builtins ----------------- - Issue #29537: Restore runtime compatibility with bytecode files generated by - CPython 3.5.0 and 3.5.1, and adjust the eval loop to avoid the problems that + CPython 3.5.0/1/2, and adjust the eval loop to avoid the problems that could be caused by the malformed variant of the BUILD_MAP_UNPACK_WITH_CALL opcode that they may contain. Patch by Petr Viktorin, Serhiy Storchaka, and Nick Coghlan. From 3baf7bed01ad95dd54b5d8a60a520edb44f29200 Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Wed, 8 Mar 2017 20:13:18 +1000 Subject: [PATCH 2/2] Make version range clearer --- Misc/NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index 43be636c12cf15..42a3b026bb74c1 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -11,7 +11,7 @@ Core and Builtins ----------------- - Issue #29537: Restore runtime compatibility with bytecode files generated by - CPython 3.5.0/1/2, and adjust the eval loop to avoid the problems that + CPython 3.5.0 to 3.5.2, and adjust the eval loop to avoid the problems that could be caused by the malformed variant of the BUILD_MAP_UNPACK_WITH_CALL opcode that they may contain. Patch by Petr Viktorin, Serhiy Storchaka, and Nick Coghlan.