Python: link to FP report in test file

This commit is contained in:
Rasmus Lerchedahl Petersen
2020-06-11 07:14:48 +02:00
parent 6b168de7fc
commit b5703cd3f6

View File

@@ -36,7 +36,7 @@ re.match(b"\$ ", b"$ ")
re.match(b"abc$(?m)", b"abc")
re.match(b"abc$()", b"abc")
re.match(b"((a$)|b)*", b"bba")
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
re.match(b"((a$).*)", b"a")
re.match("(\Aab$|\Aba$)$\Z", "ab")
re.match(b"((a$\Z)|b){4}", b"bbba")