diff options
author | Fred Drake <fdrake@acm.org> | 2003-06-28 11:50:34 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-06-28 11:50:34 (GMT) |
commit | ded8e740df2a824a9df8ebd5d71766bf26e4ba53 (patch) | |
tree | 5987fe105c32b2bac7e62368b48e5209df91c210 /Doc | |
parent | 7928f388c445223cef857a9cee94bb20f61d9286 (diff) | |
download | cpython-ded8e740df2a824a9df8ebd5d71766bf26e4ba53.zip cpython-ded8e740df2a824a9df8ebd5d71766bf26e4ba53.tar.gz cpython-ded8e740df2a824a9df8ebd5d71766bf26e4ba53.tar.bz2 |
Correct markup errors that prevented formatting.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tut/tut.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 2104775..1885f5a 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -307,7 +307,7 @@ comment in Python. It is possible to use encodings different than ASCII in Python source files. The best way to do it is to put one more special comment line -right after \code{#!} line making proper encoding declaration: +right after \code{\#!} line making proper encoding declaration: \begin{verbatim} # -*- coding: iso-8859-1 -*- @@ -326,7 +326,7 @@ encoding declaration. IDLE supports such saving if \code{Options/General/Default Source Encoding/UTF-8} is set. Notice that this signature is not understood in older Python releases (2.2 and earlier), and also not understood by the operating system for -\code{#!} files. +\code{\#!} files. By using UTF-8 (either through the signature, or a an encoding declaration), characters of most languages in the world can be used |