diff options
author | Eric Smith <eric@trueblade.com> | 2009-05-07 19:37:22 +0000 |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2009-05-07 19:37:22 +0000 |
commit | 98ff81deec715bdf18eb2b10fab2a7b1d76558cc (patch) | |
tree | a3b4ff626fb91604d591f952bafcaa02d4cd1f92 | |
parent | 7eaa99206674826720e622acff5576b637f3d69e (diff) | |
download | cpython-git-98ff81deec715bdf18eb2b10fab2a7b1d76558cc.tar.gz |
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.
........
-rw-r--r-- | Doc/library/string.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 6d975920fa..2ac09aefc1 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -388,7 +388,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. |