[pypy-svn] r77703 - pypy/branch/fast-forward/pypy/objspace/std

afa at codespeak.net afa at codespeak.net
Thu Oct 7 23:54:48 CEST 2010


Author: afa
Date: Thu Oct  7 23:54:46 2010
New Revision: 77703

Modified:
   pypy/branch/fast-forward/pypy/objspace/std/complexobject.py
Log:
Remove debug print. Thanks Alex!


Modified: pypy/branch/fast-forward/pypy/objspace/std/complexobject.py
==============================================================================
--- pypy/branch/fast-forward/pypy/objspace/std/complexobject.py	(original)
+++ pypy/branch/fast-forward/pypy/objspace/std/complexobject.py	Thu Oct  7 23:54:46 2010
@@ -273,7 +273,6 @@
     return format_float(x, "%.12g")
 
 def repr__Complex(space, w_complex):
-    print "AFA REPR", (w_complex, w_complex.realval, w_complex.imagval)
     if w_complex.realval == 0 and math.copysign(1., w_complex.realval) == 1.:
         return space.wrap(repr_format(w_complex.imagval) + 'j')
     sign = (math.copysign(1., w_complex.imagval) == 1.) and '+' or ''



More information about the Pypy-commit mailing list