From: Eric Smith Date: Thu, 7 May 2009 19:36:09 +0000 (+0000) Subject: Fixed wording for formatting integers: precision is not allowed. X-Git-Tag: v2.7a1~1252 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7523234abf96ce3608f75f6633e43021ea1d2350;p=python Fixed wording for formatting integers: precision is not allowed. --- diff --git a/Doc/library/string.rst b/Doc/library/string.rst index d17ac7a3cc..168d1a5a4d 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -395,7 +395,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.