changeset: 98724:e52f1fa2d10e branch: 3.4 parent: 98720:6eb49f521336 user: Serhiy Storchaka date: Tue Oct 13 21:12:32 2015 +0300 files: Lib/pickletools.py Misc/NEWS description: Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in pickletools.opcodes. diff -r 6eb49f521336 -r e52f1fa2d10e Lib/pickletools.py --- a/Lib/pickletools.py Mon Oct 12 23:27:58 2015 -0500 +++ b/Lib/pickletools.py Tue Oct 13 21:12:32 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 6eb49f521336 -r e52f1fa2d10e Misc/NEWS --- a/Misc/NEWS Mon Oct 12 23:27:58 2015 -0500 +++ b/Misc/NEWS Tue Oct 13 21:12:32 2015 +0300 @@ -96,6 +96,9 @@ Library ------- +- 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