diff options
author | Garrett-R <garrettreynolds5@gmail.com> | 2014-12-08 20:40:41 -0800 |
---|---|---|
committer | Garrett-R <garrettreynolds5@gmail.com> | 2014-12-08 20:40:41 -0800 |
commit | 971ae727442f83a81f52af619ea13649a6ddcf83 (patch) | |
tree | 326caebc4e1a6c7a9a11eeafbfe65027c28ff52a /numpy/lib/twodim_base.py | |
parent | 819b3a8a019469774a5343afd87ec71ec696bf80 (diff) | |
download | numpy-971ae727442f83a81f52af619ea13649a6ddcf83.tar.gz |
Improved PEP-8 compliance
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: |