[pypy-commit] pypy default: remove tabs

fijal noreply at buildbot.pypy.org
Tue Oct 9 16:45:33 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
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


More information about the pypy-commit mailing list