diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2006-01-06 10:06:32 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2006-01-06 10:06:32 +0000 |
commit | 5f5c4b92573a060d20cf9bbf70db00d45cda7268 (patch) | |
tree | a1d2b4c60fbca0035aef7f1de15df8f1f60147bf /numpy/lib/machar.py | |
parent | 1eab315ff7027ce74e5d2f59097c6cf7d05c551f (diff) | |
download | numpy-5f5c4b92573a060d20cf9bbf70db00d45cda7268.tar.gz |
Included locals info to error on negep.
Diffstat (limited to 'numpy/lib/machar.py')
-rw-r--r-- | numpy/lib/machar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/machar.py b/numpy/lib/machar.py index 55659dbaa..894623e82 100644 --- a/numpy/lib/machar.py +++ b/numpy/lib/machar.py @@ -126,7 +126,7 @@ class MachAr(object): # Prevent infinite loop on PPC with gcc 4.0: if negep < 0: raise RuntimeError, "could not determine machine tolerance " \ - "for 'negep'" + "for 'negep', locals() -> %s" % (locals()) negep = -negep epsneg = a |