diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2019-04-13 11:54:26 -0700 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2019-04-13 12:09:20 -0700 |
commit | 3b8bcc33e1fb75c7fed4cc0d83fd2640da5e1e77 (patch) | |
tree | eb6719232ea0e4251c85e168ac1e3fad5461e524 /numpy/core/numeric.py | |
parent | dea1239b6dcaf072fc9b70e6af0c0a100cead69e (diff) | |
download | numpy-3b8bcc33e1fb75c7fed4cc0d83fd2640da5e1e77.tar.gz |
MAINT: Move exceptions from core._internal to core._exceptions
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 42fee4eb7..b4255e733 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -38,7 +38,7 @@ from .umath import (multiply, invert, sin, UFUNC_BUFSIZE_DEFAULT, ERR_LOG, ERR_DEFAULT, PINF, NAN) from . import numerictypes from .numerictypes import longlong, intc, int_, float_, complex_, bool_ -from ._internal import TooHardError, AxisError +from ._exceptions import TooHardError, AxisError bitwise_not = invert ufunc = type(sin) |