diff options
author | Travis Oliphant <oliphant@enthought.com> | 2008-02-29 06:35:47 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2008-02-29 06:35:47 +0000 |
commit | 709bd50ed880bf1bab05b783afe5538a79b5eaed (patch) | |
tree | dab3900d406548e8e1287bd1b570264db198825b /numpy/__init__.py | |
parent | 75b86e12526899cda4e901db9fb951e57d118b6e (diff) | |
download | numpy-709bd50ed880bf1bab05b783afe5538a79b5eaed.tar.gz |
Alter NumPy docstring to remove ad and give a litte more info.
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index 3b611f4da..a62e3c943 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -1,19 +1,14 @@ """ NumPy ========== - -You can support the development of NumPy and SciPy by purchasing -the book "Guide to NumPy" at - - http://www.trelgol.com - -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. +Provides + 1) An array object of arbitrary homogeneous items + 2) Fast mathematical operations over arrays + 3) Linear Algebra, Fourier Transforms, Random Number Generation Documentation is available in the docstrings and at -http://www.scipy.org. +http://www.scipy.org """ # We first need to detect if we're being called as part of the numpy setup |