summaryrefslogtreecommitdiff
path: root/numpy/numarray/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/numarray/util.py')
-rw-r--r--numpy/numarray/util.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/numarray/util.py b/numpy/numarray/util.py
index 1120a4005..374c041cc 100644
--- a/numpy/numarray/util.py
+++ b/numpy/numarray/util.py
@@ -1,6 +1,9 @@
from numpy import geterr
+__all__ = ['MathDomainError', 'UnderflowError', 'NumOverflowError', 'handleError',
+ 'get_numarray_include_dirs']
+
class MathDomainError(ArithmeticError): pass
class UnderflowError(ArithmeticError): pass
class NumOverflowError(OverflowError, ArithmeticError): pass