Python: Add test with prefix

This commit is contained in:
Rasmus Lerchedahl Petersen
2023-08-16 10:56:32 +02:00
parent 7ad1a21c2d
commit 88fc96e8d7

View File

@@ -10,3 +10,4 @@ re.compile(r'(?:.|\n)*b', re.DOTALL) # Has ReDoS.
re.compile(r'(?i)(?:.|\n)*b') # No ReDoS.
re.compile(r'(?s)(?:.|\n)*b') # Has ReDoS.
re.compile(r'(?is)(?:.|\n)*b') # Has ReDoS.
re.compile(r'(?is)X(?:.|\n)*Y') # Has ReDoS.