[Python-checkins] r72439 - python/trunk/Doc/library/string.rst

eric.smith python-checkins at python.org
Thu May 7 21:36:09 CEST 2009


Author: eric.smith
Date: Thu May  7 21:36:09 2009
New Revision: 72439

Log:
Fixed wording for formatting integers: precision is not allowed.

Modified:
   python/trunk/Doc/library/string.rst

Modified: python/trunk/Doc/library/string.rst
==============================================================================
--- python/trunk/Doc/library/string.rst	(original)
+++ python/trunk/Doc/library/string.rst	Thu May  7 21:36:09 2009
@@ -395,7 +395,7 @@
 ``'f'`` and ``'F'``, or before and after the decimal point for a floating point
 value formatted with ``'g'`` or ``'G'``.  For non-number types the field
 indicates the maximum field size - in other words, how many characters will be
-used from the field content. The *precision* is ignored for integer values.
+used from the field content. The *precision* is not allowed for integer values.
 
 Finally, the *type* determines how the data should be presented.
 


More information about the Python-checkins mailing list