summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authordhuard <dhuard@localhost>2008-11-12 20:53:55 +0000
committerdhuard <dhuard@localhost>2008-11-12 20:53:55 +0000
commit57f2e369f37405f187b2c94305f416785da068ac (patch)
treed3af3fd6b2eb26869cbfcf01af3573f99c4d1a4d /numpy/lib/function_base.py
parent08ad9d1c06865c86684f52fc4c6cf1bf527f1181 (diff)
downloadnumpy-57f2e369f37405f187b2c94305f416785da068ac.tar.gz
removed the `new` argument in the histogram docstring example
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index e12fc5332..8bf20d3fb 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -260,7 +260,7 @@ def histogram(a, bins=10, range=None, normed=False, weights=None, new=None):
Examples
--------
- >>> np.histogram([1,2,1], bins=[0,1,2,3], new=True)
+ >>> np.histogram([1,2,1], bins=[0,1,2,3])
(array([0, 2, 1]), array([0, 1, 2, 3]))
"""