Author: Laurence Tratt <[email protected]>
Branch: more_strategies
Changeset: r67959:3a4f3f694fe9
Date: 2013-11-11 15:29 +0000
http://bitbucket.org/pypy/pypy/changeset/3a4f3f694fe9/

Log:    Remove pointless print statements.

        Presumably these are long forgotten debugging aids.

diff --git a/pypy/objspace/std/test/test_listobject.py 
b/pypy/objspace/std/test/test_listobject.py
--- a/pypy/objspace/std/test/test_listobject.py
+++ b/pypy/objspace/std/test/test_listobject.py
@@ -1187,7 +1187,6 @@
                 skip("not reliable on top of Boehm")
         class A(object):
             def __del__(self):
-                print 'del'
                 del lst[:]
         for i in range(10):
             keepalive = []
@@ -1257,7 +1256,6 @@
                 (dict, []), (dict, [(5,6)]), (dict, [('x',7)]), (dict, 
[(X,8)]),
                 (dict, [(u'x', 7)]),
                 ]:
-            print base, arg
             class SubClass(base):
                 def __iter__(self):
                     return iter("foobar")
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to