diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-25 22:14:06 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-25 22:14:06 +0000 |
commit | 28e44d3bbe831956a10064de2b76298316dc7cf5 (patch) | |
tree | 7df1e184931be7e8680bbac448805a2947d5bd36 /numpy/oldnumeric/user_array.py | |
parent | 1bc555d8e56339777bcb31cc323e619c00cfff51 (diff) | |
download | numpy-28e44d3bbe831956a10064de2b76298316dc7cf5.tar.gz |
Fix a problem with __all__ not being copied in oldnumeric.
Diffstat (limited to 'numpy/oldnumeric/user_array.py')
-rw-r--r-- | numpy/oldnumeric/user_array.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/oldnumeric/user_array.py b/numpy/oldnumeric/user_array.py index d7975d8a7..375c4013b 100644 --- a/numpy/oldnumeric/user_array.py +++ b/numpy/oldnumeric/user_array.py @@ -4,6 +4,6 @@ from numpy.oldnumeric import * from numpy.lib.user_array import container as UserArray import numpy.oldnumeric as nold -__all__ = nold.__all__ +__all__ = nold.__all__[:] __all__ += ['UserArray'] del nold |