diff options
author | cookedm <cookedm@localhost> | 2006-03-10 21:19:42 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-03-10 21:19:42 +0000 |
commit | f2db317c1fad63f1c85944ba8443b465e32774dc (patch) | |
tree | d78a7b19f1594f34c86adbdb08389b30a5c95d4d /numpy/lib/machar.py | |
parent | 3493d8b3cee54037e893fde83f3113a66b0ec7e8 (diff) | |
download | numpy-f2db317c1fad63f1c85944ba8443b465e32774dc.tar.gz |
Run tabnanny over the code, and replace uses of tab for indentation with spaces
Diffstat (limited to 'numpy/lib/machar.py')
-rw-r--r-- | numpy/lib/machar.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/machar.py b/numpy/lib/machar.py index 894623e82..249dfddad 100644 --- a/numpy/lib/machar.py +++ b/numpy/lib/machar.py @@ -123,10 +123,10 @@ class MachAr(object): break a = a * beta negep = negep - 1 - # Prevent infinite loop on PPC with gcc 4.0: - if negep < 0: + # Prevent infinite loop on PPC with gcc 4.0: + if negep < 0: raise RuntimeError, "could not determine machine tolerance " \ - "for 'negep', locals() -> %s" % (locals()) + "for 'negep', locals() -> %s" % (locals()) negep = -negep epsneg = a |