Author: Alex Gaynor <alex.gay...@gmail.com>
Branch: 
Changeset: r47085:baa4ae3fbdee
Date: 2011-09-04 16:54 -0700
http://bitbucket.org/pypy/pypy/changeset/baa4ae3fbdee/

Log:    Bytes aren't free, don't waste it on an extra space.

diff --git a/pypy/module/micronumpy/interp_dtype.py 
b/pypy/module/micronumpy/interp_dtype.py
--- a/pypy/module/micronumpy/interp_dtype.py
+++ b/pypy/module/micronumpy/interp_dtype.py
@@ -224,7 +224,7 @@
         return math.tan(v)
     @unaryop
     def arcsin(self, v):
-        if v < -1.0 or  v > 1.0:
+        if v < -1.0 or v > 1.0:
             return rfloat.NAN
         return math.asin(v)
     @unaryop
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to