[Python-checkins] r72792 - python/trunk/Lib/pickletools.py

collin.winter python-checkins at python.org
Wed May 20 18:49:12 CEST 2009


Author: collin.winter
Date: Wed May 20 18:49:12 2009
New Revision: 72792

Log:
Issue 6066: POP_MARK was not in pickle protocol 0.

Modified:
   python/trunk/Lib/pickletools.py

Modified: python/trunk/Lib/pickletools.py
==============================================================================
--- python/trunk/Lib/pickletools.py	(original)
+++ python/trunk/Lib/pickletools.py	Wed May 20 18:49:12 2009
@@ -1348,7 +1348,7 @@
       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,


More information about the Python-checkins mailing list