summaryrefslogtreecommitdiff
path: root/numpy/ma/core.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-04-13 07:00:11 -0700
committerCharles Harris <charlesr.harris@gmail.com>2013-04-13 07:00:11 -0700
commit688bc60658b391524c6b641e0a5e5ecd73322d02 (patch)
tree1b210bb7361ce691e781884bf06f89c7ebd13360 /numpy/ma/core.py
parent74b08b3f0284d9d2dd55a15dd98a3846913b1b51 (diff)
parent7f5af37e26ba2e99ad3ee6928b78437f601e96e0 (diff)
downloadnumpy-688bc60658b391524c6b641e0a5e5ecd73322d02.tar.gz
Merge pull request #3232 from charris/2to3-apply-numliterals-fixer
2to3: Apply the `numliterals` fixer and skip the `long` fixer.
Diffstat (limited to 'numpy/ma/core.py')
-rw-r--r--numpy/ma/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py
index d1c041566..23b60ee8c 100644
--- a/numpy/ma/core.py
+++ b/numpy/ma/core.py
@@ -32,7 +32,7 @@ import numpy.core.numerictypes as ntypes
from numpy import ndarray, amax, amin, iscomplexobj, bool_
from numpy import array as narray
from numpy.lib.function_base import angle
-from numpy.compat import getargspec, formatargspec
+from numpy.compat import getargspec, formatargspec, long
from numpy import expand_dims as n_expand_dims
if sys.version_info[0] >= 3: