[pypy-svn] r48278 - pypy/dist/pypy/rpython/raisingops

fijal at codespeak.net fijal at codespeak.net
Sun Nov 4 12:14:09 CET 2007


Author: fijal
Date: Sun Nov  4 12:14:07 2007
New Revision: 48278

Modified:
   pypy/dist/pypy/rpython/raisingops/raisingops.py
Log:
Kill tabs. Not sure what this stuff is doing here and why I cannot
find tests for that.


Modified: pypy/dist/pypy/rpython/raisingops/raisingops.py
==============================================================================
--- pypy/dist/pypy/rpython/raisingops/raisingops.py	(original)
+++ pypy/dist/pypy/rpython/raisingops/raisingops.py	Sun Nov  4 12:14:07 2007
@@ -36,8 +36,8 @@
 
 def llong_floordiv_zer(x, y):
     '''#define OP_LLONG_FLOORDIV_ZER(x,y,r) \
-    	if ((y)) { OP_LLONG_FLOORDIV(x,y,r); } \
-    	else FAIL_ZER("integer division")
+      if ((y)) { OP_LLONG_FLOORDIV(x,y,r); } \
+      else FAIL_ZER("integer division")
     '''
     if y:
         return llop.llong_floordiv(SignedLongLong, x, y)
@@ -46,8 +46,8 @@
 
 def ullong_floordiv_zer(x, y):
     '''#define OP_ULLONG_FLOORDIV_ZER(x,y,r) \
-    	if ((y)) { OP_ULLONG_FLOORDIV(x,y,r); } \
-    	else FAIL_ZER("unsigned integer division")
+      if ((y)) { OP_ULLONG_FLOORDIV(x,y,r); } \
+      else FAIL_ZER("unsigned integer division")
     '''
     if y:
         return llop.llong_floordiv(UnsignedLongLong, x, y)
@@ -223,8 +223,8 @@
 
 def llong_mod_zer(x, y):
     '''#define OP_LLONG_MOD_ZER(x,y,r) \
-    	if ((y)) { OP_LLONG_MOD(x,y,r); } \
-    	else FAIL_ZER("integer modulo")
+      if ((y)) { OP_LLONG_MOD(x,y,r); } \
+      else FAIL_ZER("integer modulo")
     '''
     if y:
         return llop.int_mod(SignedLongLong, x, y)



More information about the Pypy-commit mailing list