[pypy-commit] pypy default: Delete debug prints.

Manuel Jacob noreply at buildbot.pypy.org
Sat Jan 25 20:03:54 CET 2014


Author: Manuel Jacob
Branch: 
Changeset: r68940:7a4e12588ec4
Date: 2014-01-25 19:50 +0100
http://bitbucket.org/pypy/pypy/changeset/7a4e12588ec4/

Log:	Delete debug prints.

diff --git a/rpython/translator/c/test/test_lltyped.py b/rpython/translator/c/test/test_lltyped.py
--- a/rpython/translator/c/test/test_lltyped.py
+++ b/rpython/translator/c/test/test_lltyped.py
@@ -646,10 +646,7 @@
             def llf():
                 s = ''
                 for i in range(5):
-                    print i
-                    print s
                     s += a[i]
-                print s
                 assert s == "85?!" + lastchar
             fn = self.getcompiled(llf, [])
             fn()
@@ -731,7 +728,6 @@
             s = ''
             for i in range(4):
                 s += a[i]
-            print s
             return s == 'abcd'
         fn = self.getcompiled(llf, [])
         assert fn()


More information about the pypy-commit mailing list