diff options
author | Collin Winter <collinw@gmail.com> | 2009-05-20 16:49:12 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2009-05-20 16:49:12 (GMT) |
commit | 1ef9c837b7c61e20db8e2aceeb34e450e92405f9 (patch) | |
tree | 306eae2d4245d36fe66ff6935f7e47df45f745a9 /Lib/pickletools.py | |
parent | 364b22183c07e601a4cf2e4eaab8de0b3562bb73 (diff) | |
download | cpython-1ef9c837b7c61e20db8e2aceeb34e450e92405f9.zip cpython-1ef9c837b7c61e20db8e2aceeb34e450e92405f9.tar.gz cpython-1ef9c837b7c61e20db8e2aceeb34e450e92405f9.tar.bz2 |
Issue 6066: POP_MARK was not in pickle protocol 0.
Diffstat (limited to 'Lib/pickletools.py')
-rw-r--r-- | Lib/pickletools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pickletools.py b/Lib/pickletools.py index 7121c2a..065498c 100644 --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -1348,7 +1348,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, |