From: Martin v. Löwis Date: Wed, 18 Aug 2004 13:25:05 +0000 (+0000) Subject: Patch #1011144: Correct regex for coding decls. X-Git-Tag: v2.4a3~206 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae075b6cb7830fab2ee103441fd2549fb282643f;p=thirdparty%2FPython%2Fcpython.git Patch #1011144: Correct regex for coding decls. --- diff --git a/Doc/ref/ref2.tex b/Doc/ref/ref2.tex index 375604f062c2..10cfc069d4ae 100644 --- a/Doc/ref/ref2.tex +++ b/Doc/ref/ref2.tex @@ -75,7 +75,7 @@ Comments are ignored by the syntax; they are not tokens. \subsection{Encoding declarations\label{encodings}} If a comment in the first or second line of the Python script matches -the regular expression \regexp{coding[=:]\e s*([\e w-_.]+)}, this comment is +the regular expression \regexp{coding[=:]\e s*([-\e w.]+)}, this comment is processed as an encoding declaration; the first group of this expression names the encoding of the source code file. The recommended forms of this expression are