diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2015-01-21 19:54:12 +0100 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2015-01-22 22:29:05 +0100 |
commit | 4f861238803aa9ab913a1011eabed3505a3f703d (patch) | |
tree | 5da6679a4c908de2574ea49ebb1254360bfb7761 /numpy/lib/function_base.py | |
parent | 960433e8f5f39587d10c60ed1d3f50591434a82b (diff) | |
download | numpy-4f861238803aa9ab913a1011eabed3505a3f703d.tar.gz |
MAINT: merge _compiled_base module into multiarray
Allows access to internal functions for the file.
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 135053e43..2baf83830 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -23,9 +23,9 @@ from numpy.core.fromnumeric import ( from numpy.core.numerictypes import typecodes, number from numpy.lib.twodim_base import diag from .utils import deprecate -from ._compiled_base import _insert, add_docstring -from ._compiled_base import digitize, bincount, interp as compiled_interp -from ._compiled_base import add_newdoc_ufunc +from numpy.core.multiarray import _insert, add_docstring +from numpy.core.multiarray import digitize, bincount, interp as compiled_interp +from numpy.core.umath import _add_newdoc_ufunc as add_newdoc_ufunc from numpy.compat import long # Force range to be a generator, for np.delete's usage. |