From 57f2e369f37405f187b2c94305f416785da068ac Mon Sep 17 00:00:00 2001 From: dhuard Date: Wed, 12 Nov 2008 20:53:55 +0000 Subject: removed the `new` argument in the histogram docstring example --- numpy/lib/function_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/function_base.py') 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])) """ -- cgit v1.2.1