summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2006-07-31 09:02:31 +0000
committerStefan van der Walt <stefan@sun.ac.za>2006-07-31 09:02:31 +0000
commit43165e87f293b52e3d4938b49124c82410afe335 (patch)
tree87059a84519892c60942f013884440e594343ce5
parentb4384f37c835c96f426aaf63896a29fe0f7e7bb3 (diff)
downloadnumpy-43165e87f293b52e3d4938b49124c82410afe335.tar.gz
Use spaces instead of tabs.
-rw-r--r--numpy/core/tests/test_regression.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/tests/test_regression.py b/numpy/core/tests/test_regression.py
index d5970c966..a6bf45067 100644
--- a/numpy/core/tests/test_regression.py
+++ b/numpy/core/tests/test_regression.py
@@ -179,8 +179,8 @@ class test_regression(NumpyTestCase):
def check_intp(self,level=rlevel):
"""Ticket #99"""
- i_width = N.int_(0).nbytes*2 - 1
- N.intp('0x' + 'f'*i_width,16)
+ i_width = N.int_(0).nbytes*2 - 1
+ N.intp('0x' + 'f'*i_width,16)
self.failUnlessRaises(OverflowError,N.intp,'0x' + 'f'*(i_width+1),16)
self.failUnlessRaises(ValueError,N.intp,'0x1',32)
assert_equal(255,N.intp('0xFF',16))