[pypy-commit] pypy numpypy-longdouble: kill a debug print

fijal noreply at buildbot.pypy.org
Thu Dec 27 19:24:58 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: numpypy-longdouble
Changeset: r59587:e498cdd94b09
Date: 2012-12-27 20:07 +0200
http://bitbucket.org/pypy/pypy/changeset/e498cdd94b09/

Log:	kill a debug print

diff --git a/pypy/module/micronumpy/interp_ufuncs.py b/pypy/module/micronumpy/interp_ufuncs.py
--- a/pypy/module/micronumpy/interp_ufuncs.py
+++ b/pypy/module/micronumpy/interp_ufuncs.py
@@ -373,7 +373,6 @@
         raise OperationError(space.w_TypeError, space.wrap("Unsupported types"))
     # Some operations promote op(bool, bool) to return int8, rather than bool
     if promote_bools and (dt1.kind == dt2.kind == interp_dtype.BOOLLTR):
-        print interp_dtype.get_dtype_cache(space).w_int8dtype
         return interp_dtype.get_dtype_cache(space).w_int8dtype
 
     # Everything numeric promotes to complex


More information about the pypy-commit mailing list