diff -r a486b673b57f Doc/library/string.rst --- a/Doc/library/string.rst Fri Oct 03 20:18:48 2014 -0400 +++ b/Doc/library/string.rst Sat Oct 04 09:17:30 2014 +0100 @@ -478,10 +478,10 @@ | ``'%'`` | Percentage. Multiplies the number by 100 and displays | | | in fixed (``'f'``) format, followed by a percent sign. | +---------+----------------------------------------------------------+ - | None | Similar to ``'g'``, except with at least one digit past | - | | the decimal point and a default precision of 12. This is | - | | intended to match :func:`str`, except you can add the | - | | other format modifiers. | + | None | With an explicit precision, this behaves like ``g`` | + | | formatting, except that it guarantees at least one digit | + | | past the decimal point. Without an explicit precision, | + | | it behaves like :func:`str`. | +---------+----------------------------------------------------------+