From: Eric Smith Date: Thu, 7 May 2009 19:39:04 +0000 (+0000) Subject: Merged revisions 72441 via svnmerge from X-Git-Tag: 3.0~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66779d873dccf3b84e2c89b01804c78574012df4;p=thirdparty%2FPython%2Fcpython.git 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. ........ ................ --- diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 5867a5ae793a..fac7873a4e72 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -365,7 +365,7 @@ displayed after the decimal point for a floating point value formatted with ``'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.