diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-08-18 11:10:01 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-08-27 07:26:56 -0600 |
commit | e15712cf5df41806980f040606744040a433b331 (patch) | |
tree | 707962427687b80536f9be80556e92d84a7d0e20 /numpy/core/fromnumeric.py | |
parent | ded81ae7d529ac0fba641b7e5e3ecf52e120700f (diff) | |
download | numpy-e15712cf5df41806980f040606744040a433b331.tar.gz |
BUG: nditer: NA masks in arrays with leading 1 dimensions had an issue
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index 4d66b51b2..12cdbd68a 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -877,6 +877,8 @@ def squeeze(a, axis=None): a : array_like Input data. axis : None or int or tuple of ints, optional + .. versionadded:: 1.7.0 + Selects a subset of the single-dimensional entries in the shape. If an axis is selected with shape entry greater than one, an error is raised. |