diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-12-15 02:37:56 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-12-15 02:37:56 (GMT) |
commit | 7b440dfec48da8e5d27c4bf55ea75a6ff5880d26 (patch) | |
tree | db13df1b4ef02c018eee93ab5607a34531428d9d /Doc | |
parent | 49010ee323eca5d6f5264f046ec1954d818fd5a7 (diff) | |
download | cpython-7b440dfec48da8e5d27c4bf55ea75a6ff5880d26.zip cpython-7b440dfec48da8e5d27c4bf55ea75a6ff5880d26.tar.gz cpython-7b440dfec48da8e5d27c4bf55ea75a6ff5880d26.tar.bz2 |
Issue #28944: Fix footnote numbering
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index e1d7149..1e19fd4 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2154,7 +2154,7 @@ The conversion types are: +------------+-----------------------------------------------------+-------+ | ``'o'`` | Signed octal value. | \(1) | +------------+-----------------------------------------------------+-------+ -| ``'u'`` | Obsolete type -- it is identical to ``'d'``. | \(7) | +| ``'u'`` | Obsolete type -- it is identical to ``'d'``. | \(6) | +------------+-----------------------------------------------------+-------+ | ``'x'`` | Signed hexadecimal (lowercase). | \(2) | +------------+-----------------------------------------------------+-------+ @@ -2219,8 +2219,7 @@ Notes: (5) If precision is ``N``, the output is truncated to ``N`` characters. - -(7) +(6) See :pep:`237`. Since Python strings have an explicit length, ``%s`` conversions do not assume |