Author: Antonio Cuni <[email protected]>
Branch: py3k
Changeset: r57714:b66b8ad37991
Date: 2012-10-02 11:18 +0200
http://bitbucket.org/pypy/pypy/changeset/b66b8ad37991/

Log:    remove debug print

diff --git a/pypy/objspace/std/setobject.py b/pypy/objspace/std/setobject.py
--- a/pypy/objspace/std/setobject.py
+++ b/pypy/objspace/std/setobject.py
@@ -1397,7 +1397,6 @@
             if not s:
                 return '%s()' % (s.__class__.__name__,)
             listrepr = repr([x for x in s])
-            print('XXX', listrepr)
             if type(s) is set:
                 return '{%s}' % (listrepr[1:-1],)
             else:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to