We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3485edc commit 8cbb7adCopy full SHA for 8cbb7ad
unix-ffi/re/test_re.py
@@ -60,3 +60,6 @@
60
text = " \thello there\n \t how are you?"
61
indents = _leading_whitespace_re.findall(text)
62
assert indents == [" \t", " \t "]
63
+
64
+m = re.match(r"(.)?", "")
65
+assert m.groups() == (None,)
0 commit comments