From: Terry Jan Reedy Date: Sun, 3 Apr 2022 00:13:37 +0000 (-0400) Subject: bpo-24563: Link encoding names to encoding declarations (GH-32274) X-Git-Tag: v3.11.0a7~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=01be5d6446abbdd95d0c18bd19a58a62b05568d8;p=thirdparty%2FPython%2Fcpython.git bpo-24563: Link encoding names to encoding declarations (GH-32274) --- diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index b69d0fbdd41f..dba1a9dd2e15 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -101,12 +101,11 @@ addition, if the first bytes of the file are the UTF-8 byte-order mark (``b'\xef\xbb\xbf'``), the declared file encoding is UTF-8 (this is supported, among others, by Microsoft's :program:`notepad`). -If an encoding is declared, the encoding name must be recognized by Python. The +If an encoding is declared, the encoding name must be recognized by Python +(see :ref:`standard-encodings`). The encoding is used for all lexical analysis, including string literals, comments and identifiers. -.. XXX there should be a list of supported encodings. - .. _explicit-joining: