summaryrefslogtreecommitdiff
path: root/numpy/__init__.py
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2008-05-14 22:52:08 +0000
committerPauli Virtanen <pav@iki.fi>2008-05-14 22:52:08 +0000
commit9bd719a3ecf017e8fd64211597d9a0559502bc2b (patch)
tree13dc12b46eebee4dcc2998b7a1ba30e1e733fff5 /numpy/__init__.py
parent48729bf741c6471c500016d12a1d80be494c7906 (diff)
downloadnumpy-9bd719a3ecf017e8fd64211597d9a0559502bc2b.tar.gz
Don't assemble numpy module docstring from several parts; removes duplication
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r--numpy/__init__.py40
1 files changed, 0 insertions, 40 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py
index c304f542d..655d019b7 100644
--- a/numpy/__init__.py
+++ b/numpy/__init__.py
@@ -118,33 +118,6 @@ else:
__all__.extend(lib.__all__)
__all__.extend(['linalg', 'fft', 'random', 'ctypeslib'])
- if __doc__ is not None:
- __doc__ += """
-
-Available subpackages
----------------------
-core --- Defines a multi-dimensional array and useful procedures
- for Numerical computation.
-lib --- Basic functions used by several sub-packages and useful
- to have in the main name-space.
-random --- Core Random Tools
-linalg --- Core Linear Algebra Tools
-fft --- Core FFT routines
-testing --- Numpy testing tools
-
- These packages require explicit import
-f2py --- Fortran to Python Interface Generator.
-distutils --- Enhancements to distutils with support for
- Fortran compilers support and more.
-
-
-Global symbols from subpackages
--------------------------------
-core --> * (use numpy.* not numpy.core.*)
-lib --> * (use numpy.* not numpy.lib.*)
-testing --> NumpyTest
-"""
-
def test(*args, **kw):
import os, sys
print 'Numpy is installed in %s' % (os.path.split(__file__)[0],)
@@ -153,16 +126,3 @@ testing --> NumpyTest
return NumpyTest().test(*args, **kw)
test.__doc__ = NumpyTest.test.__doc__
- if __doc__ is not None:
- __doc__ += """
-
-Utility tools
--------------
-
- test --- Run numpy unittests
- pkgload --- Load numpy packages
- show_config --- Show numpy build configuration
- dual --- Overwrite certain functions with high-performance Scipy tools
- matlib --- Make everything matrices.
- __version__ --- Numpy version string
-"""