diff options
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 |