[pypy-svn] r79522 - pypy/branch/reflex-support/pypy/module/cppyy

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Nov 25 17:31:33 CET 2010


Author: cfbolz
Date: Thu Nov 25 17:31:31 2010
New Revision: 79522

Modified:
   pypy/branch/reflex-support/pypy/module/cppyy/interp_cppyy.py
Log:
remove debug prints


Modified: pypy/branch/reflex-support/pypy/module/cppyy/interp_cppyy.py
==============================================================================
--- pypy/branch/reflex-support/pypy/module/cppyy/interp_cppyy.py	(original)
+++ pypy/branch/reflex-support/pypy/module/cppyy/interp_cppyy.py	Thu Nov 25 17:31:31 2010
@@ -83,10 +83,8 @@
 
         if self.methgetter and cppthis: # only for methods
             try:
-                print "trying fast call"
                 return self.do_fast_call(cppthis, args_w)
             except FastCallNotPossible:
-                print "failed"
                 pass
 
         args = self.prepare_arguments(args_w)



More information about the Pypy-commit mailing list