From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 9 May 2018 08:54:38 +0000 (-0700) Subject: bpo-13525: Fix incorrect encoding name in the tutorial example. (GH-6738) X-Git-Tag: v3.7.0b5~139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8ffff34ea12ca6478d73a337ce52f33660f6f174;p=python bpo-13525: Fix incorrect encoding name in the tutorial example. (GH-6738) (cherry picked from commit ddb6215a55b0218b621d5cb755e9dfac8dab231a) Co-authored-by: Serhiy Storchaka --- diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst index bf7ce77641..a2766e8810 100644 --- a/Doc/tutorial/interpreter.rst +++ b/Doc/tutorial/interpreter.rst @@ -148,14 +148,14 @@ where *encoding* is one of the valid :mod:`codecs` supported by Python. For example, to declare that Windows-1252 encoding is to be used, the first line of your source code file should be:: - # -*- coding: cp-1252 -*- + # -*- coding: cp1252 -*- One exception to the *first line* rule is when the source code starts with a :ref:`UNIX "shebang" line `. In this case, the encoding declaration should be added as the second line of the file. For example:: #!/usr/bin/env python3 - # -*- coding: cp-1252 -*- + # -*- coding: cp1252 -*- .. rubric:: Footnotes