diff options
Diffstat (limited to 'Lib/test/re_tests.py')
-rwxr-xr-x | Lib/test/re_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/re_tests.py b/Lib/test/re_tests.py index 12ad201..7b237ac 100755 --- a/Lib/test/re_tests.py +++ b/Lib/test/re_tests.py @@ -666,4 +666,5 @@ else: # bug 410271: \b broken under locales (r'\b.\b', 'a', SUCCEED, 'found', 'a'), (r'(?u)\b.\b', u, SUCCEED, 'found', u), + (r'(?u)\w', u, SUCCEED, 'found', u), ]) |