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 71c017f commit 3d46129Copy full SHA for 3d46129
python/ql/test/library-tests/frameworks/stdlib/test_re.py
@@ -30,16 +30,13 @@
30
tainted_match[0], # $ tainted
31
tainted_match["key"], # $ tainted
32
33
- tainted_match.groups(), # $ MISSING: tainted
34
tainted_match.groups()[0], # $ tainted
35
- tainted_match.groupdict(), # $ MISSING: tainted
36
tainted_match.groupdict()["key"], # $ tainted
37
38
re.match(pat, ts).string, # $ tainted
39
re.match(ts, "safe").re.pattern, # $ tainted
40
41
compiled_pat.match(ts).string, # $ tainted
42
- re.compile(ts).match("safe").re, # $ MISSING: tainted
43
re.compile(ts).match("safe").re.pattern, # $ tainted
44
)
45
ensure_not_tainted(
0 commit comments