From 28e44d3bbe831956a10064de2b76298316dc7cf5 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Fri, 25 Aug 2006 22:14:06 +0000 Subject: Fix a problem with __all__ not being copied in oldnumeric. --- numpy/oldnumeric/user_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/oldnumeric/user_array.py') 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 -- cgit v1.2.1