mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Merge r72792: POP_MARK was not in pickle protocol 0, SHORT_BINBYTES was not in protocol 1.
This commit is contained in:
parent
360bcac5fc
commit
e61d4372ed
1 changed files with 2 additions and 2 deletions
|
@ -1057,7 +1057,7 @@ opcodes = [
|
|||
arg=string1,
|
||||
stack_before=[],
|
||||
stack_after=[pybytes],
|
||||
proto=1,
|
||||
proto=3,
|
||||
doc="""Push a Python string object.
|
||||
|
||||
There are two arguments: the first is a 1-byte unsigned int giving
|
||||
|
@ -1384,7 +1384,7 @@ opcodes = [
|
|||
arg=None,
|
||||
stack_before=[markobject, stackslice],
|
||||
stack_after=[],
|
||||
proto=0,
|
||||
proto=1,
|
||||
doc="""Pop all the stack objects at and above the topmost markobject.
|
||||
|
||||
When an opcode using a variable number of stack objects is done,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue