From: Alexandre Vassalotti Date: Mon, 2 Dec 2013 00:31:49 +0000 (-0800) Subject: Issue #19754: Fix typo. X-Git-Tag: v3.4.0b2~408 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02066d3fbd419066ac1dc03e51ab7412996fa418;p=thirdparty%2FPython%2Fcpython.git Issue #19754: Fix typo. --- diff --git a/Lib/pickletools.py b/Lib/pickletools.py index a1c3f1316214..a2480f6510ab 100644 --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -2313,7 +2313,7 @@ def optimize(p): 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()