diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-08 07:49:10 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-08 07:49:10 +0000 |
commit | 3e3dd665d89496da053f76f120d504e9f1bf1699 (patch) | |
tree | 46d7ffc835856c2520958562081fdbf67a476dd4 /numpy/numarray/__init__.py | |
parent | 50a50441a148a9ea3fbc1629e065d88a4f28a419 (diff) | |
download | numpy-3e3dd665d89496da053f76f120d504e9f1bf1699.tar.gz |
Add numarray compatibility.
Diffstat (limited to 'numpy/numarray/__init__.py')
-rw-r--r-- | numpy/numarray/__init__.py | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/numpy/numarray/__init__.py b/numpy/numarray/__init__.py index 862fe4008..e48401433 100644 --- a/numpy/numarray/__init__.py +++ b/numpy/numarray/__init__.py @@ -1,5 +1,22 @@ from util import * -from numclass import * +from numerictypes import * +from functions import * +from ufuncs import * + +import util +import numerictypes +import functions +import ufuncs +import compat __all__ = util.__all__ -__all__ += numclass.__all__ +__all__ += numerictypes.__all__ +__all__ += functions.__all__ +__all__ += ufuncs.__all__ +__all__ += compat.__all__ + +del util +del numerictypes +del functions +del ufuncs +del compat |