diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2006-07-07 16:46:58 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2006-07-07 16:46:58 +0000 |
commit | 876176a0412c4fb22645edc531110d2a0a2fed16 (patch) | |
tree | 367de3ff18fda858c6874c6cb8dce2abf28825f7 /numpy/__init__.py | |
parent | 6dc0d80179c589f12bfef76a9564b28c450437d0 (diff) | |
download | numpy-876176a0412c4fb22645edc531110d2a0a2fed16.tar.gz |
Don't want to assign test to NumpyTest().test (which instantiates NumpyTest),
so rather bring over its docstring.
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index db5548380..34a009649 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -45,6 +45,7 @@ Available subpackages def test(level=1, verbosity=1): return NumpyTest().test(level, verbosity) + test.__doc__ = NumpyTest.test.__doc__ import add_newdocs |