[pypy-commit] pypy default: Hide another debugging print

arigo pypy.commits at gmail.com
Thu May 5 02:59:42 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r84211:a94009299a0e
Date: 2016-05-05 08:59 +0200
http://bitbucket.org/pypy/pypy/changeset/a94009299a0e/

Log:	Hide another debugging print

diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py
--- a/pypy/module/cpyext/api.py
+++ b/pypy/module/cpyext/api.py
@@ -744,7 +744,7 @@
     try:
         wrapper_gen = cache.wrapper_gens[signature]
     except KeyError:
-        print signature
+        #print signature
         wrapper_gen = cache.wrapper_gens[signature] = WrapperGen(space,
                                                                  signature)
         cache.stats[0] += 1


More information about the pypy-commit mailing list