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 6b168de commit b5703cdCopy full SHA for b5703cd
python/ql/test/query-tests/Expressions/Regex/test.py
@@ -36,7 +36,7 @@
36
re.match(b"abc$(?m)", b"abc")
37
re.match(b"abc$()", b"abc")
38
re.match(b"((a$)|b)*", b"bba")
39
-re.match(b"((a$)|b){4}", b"bbba")
+re.match(b"((a$)|b){4}", b"bbba") # Inspired by FP report here: https://github.com/github/codeql/issues/2403
40
re.match(b"((a$).*)", b"a")
41
re.match("(\Aab$|\Aba$)$\Z", "ab")
42
re.match(b"((a$\Z)|b){4}", b"bbba")
0 commit comments