Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in

pickletools.opcodes.
This commit is contained in:
Serhiy Storchaka 2015-10-13 21:12:32 +03:00
parent 83fd0a81a4
commit 5805ddeedb
2 changed files with 4 additions and 1 deletions

View file

@ -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.
"""),