Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r57952:95b2087b812f
Date: 2012-10-09 16:20 +0200
http://bitbucket.org/pypy/pypy/changeset/95b2087b812f/

Log:    remove tabs

diff --git a/pypy/module/micronumpy/types.py b/pypy/module/micronumpy/types.py
--- a/pypy/module/micronumpy/types.py
+++ b/pypy/module/micronumpy/types.py
@@ -1274,8 +1274,8 @@
 
     @complex_unary_op
     def expm1(self, v):
-       #Duplicate exp() so in the future it will be easier
-       # to implement seterr
+        # duplicate exp() so in the future it will be easier
+        # to implement seterr
         if rfloat.isinf(v[1]):
             if rfloat.isinf(v[0]):
                 if v[0] < 0:
@@ -1286,8 +1286,8 @@
                 return rfloat.NAN, rfloat.NAN
         try:
             res = rcomplex.c_exp(*v)
-           res = (res[0]-1, res[1])
-           return res
+            res = (res[0]-1, res[1])
+            return res
         except OverflowError:
             if v[1] == 0:
                 return rfloat.INFINITY, 0.0
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to