summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2019-04-13 13:04:14 -0700
committerGitHub <noreply@github.com>2019-04-13 13:04:14 -0700
commitb18e32efc3f5b77630a1d4f05399fc15c69831b3 (patch)
tree28cf8c7793e820cdf6668bd1141b5aa118cd51d6 /numpy/core/numeric.py
parentd0e2609204e4fc55f5165c1437a556ee1d0e88b7 (diff)
parent3b8bcc33e1fb75c7fed4cc0d83fd2640da5e1e77 (diff)
downloadnumpy-b18e32efc3f5b77630a1d4f05399fc15c69831b3.tar.gz
Merge pull request #13321 from eric-wieser/move-exceptions
MAINT: Move exceptions from core._internal to core._exceptions
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py2
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)