Add tests for re.L(OCALE).

This commit is contained in:
Guido van Rossum 1997-12-30 17:32:33 +00:00
parent 74608f8b8a
commit f5910e42d1
1 changed files with 7 additions and 1 deletions

View File

@ -134,7 +134,7 @@ try:
except AssertionError:
raise TestFailed, 're module constants'
for flags in [re.I, re.M, re.X, re.S]:
for flags in [re.I, re.M, re.X, re.S, re.L]:
try:
r = re.compile('^pattern$', flags)
except:
@ -229,4 +229,10 @@ for t in tests:
if result==None:
print '=== Fails on case-insensitive match', t
# Try the match with LOCALE enabled, and check that it
# still succeeds.
obj=re.compile(pattern, re.LOCALE)
result=obj.search(s)
if result==None:
print '=== Fails on locale-sensitive match', t