[Python-checkins] python/dist/src/Lib/test test_pep292.py,1.4,1.5

bwarsaw at users.sourceforge.net bwarsaw at users.sourceforge.net
Mon Sep 13 22:53:30 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18969

Modified Files:
	test_pep292.py 
Log Message:
The 4th group is now 'invalid' instead of 'bogus'.


Index: test_pep292.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_pep292.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- test_pep292.py	13 Sep 2004 15:24:43 -0000	1.4
+++ test_pep292.py	13 Sep 2004 20:53:27 -0000	1.5
@@ -103,7 +103,7 @@
             (?P<escaped>@{2})                   |
             @(?P<named>[_a-z][._a-z0-9]*)       |
             @{(?P<braced>[_a-z][._a-z0-9]*)}    |
-            (?P<bogus>@)
+            (?P<invalid>@)
             """
         m = Mapping()
         m.bag = Bag()



More information about the Python-checkins mailing list