diff options
Diffstat (limited to 'numpy/core/getlimits.py')
-rw-r--r-- | numpy/core/getlimits.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/getlimits.py b/numpy/core/getlimits.py index 97c12cc6b..4fa020e86 100644 --- a/numpy/core/getlimits.py +++ b/numpy/core/getlimits.py @@ -145,7 +145,7 @@ class finfo(object): 'machep']: setattr(self,word,getattr(machar, word)) for word in ['tiny','resolution','epsneg']: - setattr(self,word,getattr(machar, word).squeeze()) + setattr(self,word,getattr(machar, word).flat[0]) self.max = machar.huge.flat[0] self.min = -self.max self.eps = machar.eps.flat[0] |