Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in
pickletools.opcodes.
This commit is contained in:
commit
ca77aef31b
|
@ -1898,7 +1898,7 @@ opcodes = [
|
|||
arg=None,
|
||||
stack_before=[pyunicode, pyunicode],
|
||||
stack_after=[anyobject],
|
||||
proto=0,
|
||||
proto=4,
|
||||
doc="""Push a global object (module.attr) on the stack.
|
||||
"""),
|
||||
|
||||
|
|
|
@ -73,6 +73,9 @@ Library
|
|||
- 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
|
||||
|
|
Loading…
Reference in New Issue