1 parent cfd45c8 commit aaf4291Copy full SHA for aaf4291
1 file changed
Lib/test/test_re.py
@@ -1270,6 +1270,9 @@ def test_inline_flags(self):
1270
q = p.match(upper_char)
1271
self.assertTrue(q)
1272
1273
+ self.assertTrue(re.match('(?ixu) ' + upper_char, lower_char))
1274
+ self.assertTrue(re.match('(?ixu) ' + lower_char, upper_char))
1275
+
1276
def test_dollar_matches_twice(self):
1277
"$ matches the end of string, and just before the terminating \n"
1278
pattern = re.compile('$')
0 commit comments