Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in

pickletools.opcodes.
This commit is contained in:
Serhiy Storchaka 2015-10-13 21:13:34 +03:00
commit 5a8bbc5f2a
2 changed files with 4 additions and 1 deletions

View File

@ -1898,7 +1898,7 @@ opcodes = [
arg=None, arg=None,
stack_before=[pyunicode, pyunicode], stack_before=[pyunicode, pyunicode],
stack_after=[anyobject], stack_after=[anyobject],
proto=0, proto=4,
doc="""Push a global object (module.attr) on the stack. doc="""Push a global object (module.attr) on the stack.
"""), """),

View File

@ -53,6 +53,9 @@ Library
- Issue #25316: distutils raises OSError instead of DistutilsPlatformError - Issue #25316: distutils raises OSError instead of DistutilsPlatformError
when MSVC is not installed. 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 - Issue #23972: Updates asyncio datagram create method allowing reuseport
and reuseaddr socket options to be set prior to binding the socket. and reuseaddr socket options to be set prior to binding the socket.
Mirroring the existing asyncio create_server method the reuseaddr option Mirroring the existing asyncio create_server method the reuseaddr option