diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2017-03-26 09:34:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-26 09:34:11 +0100 |
commit | 1a82adf443de8b95cc747f44c2363f793a8d4ad4 (patch) | |
tree | b784805162d0485a7af080245d967da387a18494 /numpy/add_newdocs.py | |
parent | b7dc5193f7136f5b09f45c3fb10118556e961e74 (diff) | |
parent | ec6d4295a80e5df235d3f5445e6425581309c930 (diff) | |
download | numpy-1a82adf443de8b95cc747f44c2363f793a8d4ad4.tar.gz |
Merge pull request #8348 from anntzer/bincount-zero-minlength
ENH: Allow bincount(..., minlength=0).
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 cf4af9f84..40b38e01a 100644 --- a/numpy/add_newdocs.py +++ b/numpy/add_newdocs.py @@ -5107,7 +5107,7 @@ add_newdoc('numpy.core.multiarray', 'digitize', add_newdoc('numpy.core.multiarray', 'bincount', """ - bincount(x, weights=None, minlength=None) + bincount(x, weights=None, minlength=0) Count number of occurrences of each value in array of non-negative ints. |