[Numpy-svn] r3878 - trunk/numpy/core

numpy-svn at scipy.org numpy-svn at scipy.org
Mon Jul 2 12:10:00 EDT 2007


Author: chanley
Date: 2007-07-02 11:09:57 -0500 (Mon, 02 Jul 2007)
New Revision: 3878

Modified:
   trunk/numpy/core/arrayprint.py
Log:
Fix new typo added to arrayprint.py in r3877

Modified: trunk/numpy/core/arrayprint.py
===================================================================
--- trunk/numpy/core/arrayprint.py	2007-07-02 14:55:12 UTC (rev 3877)
+++ trunk/numpy/core/arrayprint.py	2007-07-02 16:09:57 UTC (rev 3878)
@@ -150,7 +150,7 @@
             format_function = _boolFormatter
         elif issubclass(dtypeobj, _nt.integer):
             max_str_len = max(len(str(maximum.reduce(data))),
-                              len(str(mininum.reduce(data))))
+                              len(str(minimum.reduce(data))))
             format = '%' + str(max_str_len) + 'd'
             format_function = lambda x: _formatInteger(x, format)
         elif issubclass(dtypeobj, _nt.floating):




More information about the Numpy-svn mailing list