[Python-checkins] r72442 - in python/branches/release30-maint: Doc/library/string.rst

eric.smith python-checkins at python.org
Thu May 7 21:39:04 CEST 2009


Author: eric.smith
Date: Thu May  7 21:39:04 2009
New Revision: 72442

Log:
Merged revisions 72441 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r72441 | eric.smith | 2009-05-07 15:38:09 -0400 (Thu, 07 May 2009) | 9 lines
  
  Merged revisions 72439 via svnmerge from 
  svn+ssh://pythondev@svn.python.org/python/trunk
  
  ........
    r72439 | eric.smith | 2009-05-07 15:36:09 -0400 (Thu, 07 May 2009) | 1 line
    
    Fixed wording for formatting integers: precision is not allowed.
  ........
................


Modified:
   python/branches/release30-maint/   (props changed)
   python/branches/release30-maint/Doc/library/string.rst

Modified: python/branches/release30-maint/Doc/library/string.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/string.rst	(original)
+++ python/branches/release30-maint/Doc/library/string.rst	Thu May  7 21:39:04 2009
@@ -365,7 +365,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