[Numpy-svn] r6021 - trunk/numpy/lib

numpy-svn at scipy.org numpy-svn at scipy.org
Wed Nov 12 15:53:56 EST 2008


Author: dhuard
Date: 2008-11-12 14:53:55 -0600 (Wed, 12 Nov 2008)
New Revision: 6021

Modified:
   trunk/numpy/lib/function_base.py
Log:
removed the `new` argument in the histogram docstring example

Modified: trunk/numpy/lib/function_base.py
===================================================================
--- trunk/numpy/lib/function_base.py	2008-11-12 20:42:53 UTC (rev 6020)
+++ trunk/numpy/lib/function_base.py	2008-11-12 20:53:55 UTC (rev 6021)
@@ -260,7 +260,7 @@
 
     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]))
 
     """




More information about the Numpy-svn mailing list