http://hg.python.org/cpython/rev/9feada79a411 changeset: 87685:9feada79a411 user: Alexandre Vassalotti <alexandre at peadrop.com> date: Sun Dec 01 16:31:49 2013 -0800 summary: Issue #19754: Fix typo. files: Lib/pickletools.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/pickletools.py b/Lib/pickletools.py --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -2313,7 +2313,7 @@ buf.start_framing() for start, stop, putid in opcodes: if putid in gets: - #buf.commit_frame() + buf.commit_frame() buf.write(p[start:stop]) if proto >= 4: buf.end_framing() -- Repository URL: http://hg.python.org/cpython