diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-05-09 09:00:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-09 09:00:13 (GMT) |
commit | fa40fc0593012893e447875632e9ed3df277561f (patch) | |
tree | 283274e912d58f4412502dcad47abfcff1cfabc7 /Doc/tutorial | |
parent | 6079b607d3fad319f84f0a0174eece44ee6a69b7 (diff) | |
download | cpython-fa40fc0593012893e447875632e9ed3df277561f.zip cpython-fa40fc0593012893e447875632e9ed3df277561f.tar.gz cpython-fa40fc0593012893e447875632e9ed3df277561f.tar.bz2 |
bpo-13525: Fix incorrect encoding name in the tutorial example. (GH-6738)
(cherry picked from commit ddb6215a55b0218b621d5cb755e9dfac8dab231a)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/interpreter.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst index 3bd100d..d04f7ce 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 <tut-scripts>`. 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 |