diff options
author | Barry Warsaw <barry@python.org> | 2004-09-13 20:53:27 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2004-09-13 20:53:27 (GMT) |
commit | 3e773fb6225a9da6fd3f45bad9ead3baa8979f02 (patch) | |
tree | 440ef205e4882d8ba857f43cccaf85a1c3020170 /Lib/test/test_pep292.py | |
parent | b5c6b5bfe8207a4706b4d37352117ba7f4064a98 (diff) | |
download | cpython-3e773fb6225a9da6fd3f45bad9ead3baa8979f02.zip cpython-3e773fb6225a9da6fd3f45bad9ead3baa8979f02.tar.gz cpython-3e773fb6225a9da6fd3f45bad9ead3baa8979f02.tar.bz2 |
The 4th group is now 'invalid' instead of 'bogus'.
Diffstat (limited to 'Lib/test/test_pep292.py')
-rw-r--r-- | Lib/test/test_pep292.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pep292.py b/Lib/test/test_pep292.py index 377db7f..c22f59b 100644 --- a/Lib/test/test_pep292.py +++ b/Lib/test/test_pep292.py @@ -103,7 +103,7 @@ class TestTemplate(unittest.TestCase): (?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() |