Commit 5805ddee authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in

pickletools.opcodes.
parent 83fd0a81
......@@ -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.
"""),
......
......@@ -96,6 +96,9 @@ Core and Builtins
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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment