[pypy-commit] pypy default: Silence this debug print

arigo pypy.commits at gmail.com
Sun May 1 05:35:48 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r84090:cea64c2b66ee
Date: 2016-05-01 11:32 +0200
http://bitbucket.org/pypy/pypy/changeset/cea64c2b66ee/

Log:	Silence this debug 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
@@ -749,7 +749,7 @@
         wrapper_gen = cache.wrapper_gens[signature] = WrapperGen(space,
                                                                  signature)
         cache.stats[0] += 1
-    print 'Wrapper cache [wrappers/total]:', cache.stats
+    #print 'Wrapper cache [wrappers/total]:', cache.stats
     return wrapper_gen.make_wrapper(callable)
 
 


More information about the pypy-commit mailing list