From: Sandro Tosi Date: Mon, 31 Oct 2011 18:19:26 +0000 (+0100) Subject: really use backticks in string conversion definition; thanks to Jonathan Blakes from... X-Git-Tag: v2.7.3rc1~343^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73ce5e73a6104dec677538b21dbf6a620a2fc6be;p=python really use backticks in string conversion definition; thanks to Jonathan Blakes from docs@ --- diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index e2cc80daa6..084c6e4757 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -347,7 +347,7 @@ A string conversion is an expression list enclosed in reverse (a.k.a. backward) 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.