changeset: 98726:f584dadc640f parent: 98723:d6fcda2b9b5e parent: 98725:4115eabc3a6d user: Serhiy Storchaka date: Tue Oct 13 21:14:01 2015 +0300 files: Misc/NEWS description: Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in pickletools.opcodes. diff -r d6fcda2b9b5e -r f584dadc640f Lib/pickletools.py --- a/Lib/pickletools.py Tue Oct 13 10:51:47 2015 +0200 +++ b/Lib/pickletools.py Tue Oct 13 21:14:01 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 d6fcda2b9b5e -r f584dadc640f Misc/NEWS --- a/Misc/NEWS Tue Oct 13 10:51:47 2015 +0200 +++ b/Misc/NEWS Tue Oct 13 21:14:01 2015 +0300 @@ -73,6 +73,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