diff options
author | Travis Oliphant <oliphant@enthought.com> | 2007-12-28 22:14:14 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2007-12-28 22:14:14 +0000 |
commit | 15437fc1140e83d0c6dde31af9b38813cc514c2e (patch) | |
tree | c43ca7206f13bf8c56a9c8a39faf5c9ecd669850 /numpy/__init__.py | |
parent | efbe398a9e374ea4e00391cf3c8b9fc365f5e9eb (diff) | |
download | numpy-15437fc1140e83d0c6dde31af9b38813cc514c2e.tar.gz |
Improve docstrings
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index 000d60341..dbba4f88d 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -1,4 +1,4 @@ -"""\ +""" NumPy ========== @@ -7,11 +7,11 @@ the book "Guide to NumPy" at http://www.trelgol.com -It is being distributed for a fee for only a few years to +It is being distributed for a fee until Oct. 2010 to cover some of the costs of development. After the restriction period it will also be freely available. -Additional documentation is available in the docstrings and at +Documentation is available in the docstrings and at http://www.scipy.org. """ @@ -34,6 +34,7 @@ else: loader = PackageLoader(infunc=True) return loader(*packages, **options) + pkgload.__doc__ = PackageLoader.__call__.__doc__ import testing from testing import ScipyTest, NumpyTest import core @@ -79,8 +80,8 @@ distutils --- Enhancements to distutils with support for Global symbols from subpackages ------------------------------- -core --> * -lib --> * +core --> * (use numpy.* not numpy.core.*) +lib --> * (use numpy.* not numpy.lib.*) testing --> NumpyTest """ |