diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-09-10 06:48:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-10 06:48:54 (GMT) |
commit | b86e62644fb394402850fbc16ca0b8b3638b8378 (patch) | |
tree | ea289822102b299edb9b0e0617a6cdc393e583bd | |
parent | 5f76d720928a868033444bdf73cac6f3515c0307 (diff) | |
download | cpython-b86e62644fb394402850fbc16ca0b8b3638b8378.zip cpython-b86e62644fb394402850fbc16ca0b8b3638b8378.tar.gz cpython-b86e62644fb394402850fbc16ca0b8b3638b8378.tar.bz2 |
[doc] Remove superfluous comment about equal in f-strings (GH-22006)
Automerge-Triggered-By: @kushaldas
(cherry picked from commit 788b79fa7b6184221e68d4f1a3fbe0b3270693f6)
Co-authored-by: Andre Delfino <adelfino@gmail.com>
-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 |