diff options
author | cookedm <cookedm@localhost> | 2007-12-24 16:38:23 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2007-12-24 16:38:23 +0000 |
commit | b785d554419381568785481800054adc90a8022b (patch) | |
tree | 4124985aa781924f40cd740f38ac1532dcfb5144 /numpy | |
parent | c7b8c2842dff3f62f1dba62cd4a3431377a68bd7 (diff) | |
download | numpy-b785d554419381568785481800054adc90a8022b.tar.gz |
Don't add test to numpy.__all__: it's not something that needs to be exported
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index 1a9271bce..000d60341 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -94,7 +94,7 @@ testing --> NumpyTest import add_newdocs - __all__.extend(['add_newdocs','test']) + __all__.extend(['add_newdocs']) if __doc__ is not None: __doc__ += """ |