cpython (2.7): really use backticks in string conversion definition; thanks to Jonathan Blakes

http://hg.python.org/cpython/rev/3a126a459b6f changeset: 73259:3a126a459b6f branch: 2.7 parent: 73253:7ce3b719306e user: Sandro Tosi <sandro.tosi@gmail.com> date: Mon Oct 31 19:19:26 2011 +0100 summary: really use backticks in string conversion definition; thanks to Jonathan Blakes from docs@ files: Doc/reference/expressions.rst | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -347,7 +347,7 @@ quotes: .. productionlist:: - string_conversion: "'" `expression_list` "'" + string_conversion: "`" `expression_list` "`" A string conversion evaluates the contained expression list and converts the resulting object into a string according to rules specific to its type. -- Repository URL: http://hg.python.org/cpython
participants (1)
-
sandro.tosi