[Python-checkins] python/nondist/peps pep-0263.txt,1.16,1.17
akuchling at users.sourceforge.net
akuchling at users.sourceforge.net
Wed Jul 21 23:22:54 CEST 2004
Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv731
Modified Files:
pep-0263.txt
Log Message:
[Bug #995522] Fix regex
Index: pep-0263.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0263.txt,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** pep-0263.txt 21 Feb 2003 15:24:41 -0000 1.16
--- pep-0263.txt 21 Jul 2004 21:22:51 -0000 1.17
***************
*** 1,2 ****
--- 1,3 ----
+
PEP: 0263
Title: Defining Python Source Code Encodings
***************
*** 53,57 ****
More precisely, the first or second line must match the regular
! expression "coding[:=]\s*([\w-_.]+)". The first group of this
expression is then interpreted as encoding name. If the encoding
is unknown to Python, an error is raised during compilation. There
--- 54,58 ----
More precisely, the first or second line must match the regular
! expression "coding[:=]\s*([-\w_.]+)". The first group of this
expression is then interpreted as encoding name. If the encoding
is unknown to Python, an error is raised during compilation. There
More information about the Python-checkins
mailing list