diff options
author | Pauli Virtanen <pav@iki.fi> | 2009-02-14 22:09:26 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2009-02-14 22:09:26 +0000 |
commit | 9902bd1969a738ddec9e01d019d98142dda59f3f (patch) | |
tree | 7aa8e05daec4391ba5eccc20876cf5391a6ae72a /numpy/lib/index_tricks.py | |
parent | 33d79edf8e06fd69b26a9331d612caadb7b55672 (diff) | |
download | numpy-9902bd1969a738ddec9e01d019d98142dda59f3f.tar.gz |
More add_newdocs entries, and make add_newdoc capable of adding docs also to normal Python objects.
Diffstat (limited to 'numpy/lib/index_tricks.py')
-rw-r--r-- | numpy/lib/index_tricks.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/index_tricks.py b/numpy/lib/index_tricks.py index 3021635dc..fcd3909af 100644 --- a/numpy/lib/index_tricks.py +++ b/numpy/lib/index_tricks.py @@ -212,6 +212,8 @@ class nd_grid(object): mgrid = nd_grid(sparse=False) ogrid = nd_grid(sparse=True) +mgrid.__doc__ = None # set in numpy.add_newdocs +ogrid.__doc__ = None # set in numpy.add_newdocs class AxisConcatenator(object): """Translates slice objects to concatenation along an axis. |