diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-08-17 23:07:58 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-08-27 07:26:56 -0600 |
commit | a112fc4a6b28fbb85e1b0c6d423095d13cf7b226 (patch) | |
tree | 07ce0d495f708debcf76be16f7cfb66ea0a1ddb5 /numpy/add_newdocs.py | |
parent | 0fa4f22fec4b19e2a8c1d93e5a1f955167c9addd (diff) | |
download | numpy-a112fc4a6b28fbb85e1b0c6d423095d13cf7b226.tar.gz |
ENH: missingdata: Implement skipna= support for np.std and np.var
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r-- | numpy/add_newdocs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py index b402d2150..711b7de52 100644 --- a/numpy/add_newdocs.py +++ b/numpy/add_newdocs.py @@ -4194,7 +4194,7 @@ add_newdoc('numpy.core.multiarray', 'ndarray', ('sort', add_newdoc('numpy.core.multiarray', 'ndarray', ('squeeze', """ - a.squeeze() + a.squeeze(axis=None) Remove single-dimensional entries from the shape of `a`. |