diff options
Diffstat (limited to 'numpy/lib/twodim_base.py')
-rw-r--r-- | numpy/lib/twodim_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/twodim_base.py b/numpy/lib/twodim_base.py index 0c5065fa1..25504e434 100644 --- a/numpy/lib/twodim_base.py +++ b/numpy/lib/twodim_base.py @@ -19,6 +19,8 @@ __all__ = [ i1 = iinfo(int8) i2 = iinfo(int16) i4 = iinfo(int32) + + def _min_int(low, high): """ get small int that fits the range """ if high <= i1.max and low >= i1.min: |