Author: Brian Kearns <[email protected]>
Branch: py3k
Changeset: r62267:c4ddf78907d3
Date: 2013-03-08 23:51 -0500
http://bitbucket.org/pypy/pypy/changeset/c4ddf78907d3/

Log:    merge default

diff --git a/lib_pypy/disassembler.py b/lib_pypy/disassembler.py
--- a/lib_pypy/disassembler.py
+++ b/lib_pypy/disassembler.py
@@ -4,6 +4,7 @@
 view on things
 """
 
+from __future__ import print_function
 import sys
 import types
 import inspect
@@ -77,7 +78,7 @@
         x = x.__code__
     if hasattr(x, '__dict__'):
         xxx
-        sorted(x.__dict__.items())
+        items = sorted(x.__dict__.items())
         for name, x1 in items:
             if type(x1) in (types.MethodType,
                             types.FunctionType,
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to