diff options
author | Andre Delfino <adelfino@gmail.com> | 2020-09-10 06:33:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-10 06:33:13 (GMT) |
commit | 788b79fa7b6184221e68d4f1a3fbe0b3270693f6 (patch) | |
tree | 22c6435ecee33d98e394f2bd99dde22c60957a80 /Doc/reference/lexical_analysis.rst | |
parent | 471247150e9707e583297ac6b4edff978efd8941 (diff) | |
download | cpython-788b79fa7b6184221e68d4f1a3fbe0b3270693f6.zip cpython-788b79fa7b6184221e68d4f1a3fbe0b3270693f6.tar.gz cpython-788b79fa7b6184221e68d4f1a3fbe0b3270693f6.tar.bz2 |
[doc] Remove superfluous comment about equal in f-strings (GH-22006)
Automerge-Triggered-By: @kushaldas
Diffstat (limited to 'Doc/reference/lexical_analysis.rst')
-rw-r--r-- | Doc/reference/lexical_analysis.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index 4c0f568..19ba83a 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -702,7 +702,7 @@ defaults to the :func:`str` of the expression unless a conversion ``'!r'`` is declared. .. versionadded:: 3.8 - The equal sign ``'='`` was added in Python 3.8. + The equal sign ``'='``. If a conversion is specified, the result of evaluating the expression is converted before formatting. Conversion ``'!s'`` calls :func:`str` on |