diff options
author | David Cournapeau <cournape@gmail.com> | 2009-10-13 08:29:14 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-10-13 08:29:14 +0000 |
commit | daf38f394fabdc9cecc8f2aadb3777e546679430 (patch) | |
tree | 3472c58fcfbf29af4ddcf552e73bdbf2d61c2060 /numpy/ma/core.py | |
parent | 7b481cbd0d73630359c4739b0bb2c13a62509e66 (diff) | |
download | numpy-daf38f394fabdc9cecc8f2aadb3777e546679430.tar.gz |
ENH: move inspect copy into newly created compat module.
Diffstat (limited to 'numpy/ma/core.py')
-rw-r--r-- | numpy/ma/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py index ce3a00fd8..fe8db4d0e 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -96,7 +96,7 @@ from numpy import array as narray import numpy.core.umath as umath import numpy.core.numerictypes as ntypes -from numpy.lib.inspect import getargspec, formatargspec +from numpy.compat import getargspec, formatargspec from numpy import expand_dims as n_expand_dims import warnings |