Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92cecb commit cc66a65Copy full SHA for cc66a65
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