summaryrefslogtreecommitdiff
path: root/numpy/numarray/util.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-07-08 02:08:07 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-07-08 02:08:07 +0000
commit56d04a88ac47b7d5966aca68f081ba97e23c5e70 (patch)
tree522dc2fdf1b789158141dabebafce8b4cb116bfe /numpy/numarray/util.py
parenta8b68803bad4052ce2e18ee697b6e2b0b546f846 (diff)
downloadnumpy-56d04a88ac47b7d5966aca68f081ba97e23c5e70.tar.gz
fix numarray package a bit.
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