changeset: 98725:4115eabc3a6d branch: 3.5 parent: 98721:a557ec9c8b12 parent: 98724:e52f1fa2d10e user: Serhiy Storchaka date: Tue Oct 13 21:13:34 2015 +0300 files: Misc/NEWS description: Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in pickletools.opcodes. diff -r a557ec9c8b12 -r 4115eabc3a6d Lib/pickletools.py --- a/Lib/pickletools.py Mon Oct 12 23:30:15 2015 -0500 +++ b/Lib/pickletools.py Tue Oct 13 21:13:34 2015 +0300 @@ -1898,7 +1898,7 @@ arg=None, stack_before=[pyunicode, pyunicode], stack_after=[anyobject], - proto=0, + proto=4, doc="""Push a global object (module.attr) on the stack. """), diff -r a557ec9c8b12 -r 4115eabc3a6d Misc/NEWS --- a/Misc/NEWS Mon Oct 12 23:30:15 2015 -0500 +++ b/Misc/NEWS Tue Oct 13 21:13:34 2015 +0300 @@ -53,6 +53,9 @@ - Issue #25316: distutils raises OSError instead of DistutilsPlatformError when MSVC is not installed. +- Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in + pickletools.opcodes. + - Issue #23972: Updates asyncio datagram create method allowing reuseport and reuseaddr socket options to be set prior to binding the socket. Mirroring the existing asyncio create_server method the reuseaddr option