mirror of
https://github.com/github/codeql.git
synced 2025-12-21 11:16:30 +01:00
12 lines
223 B
Plaintext
12 lines
223 B
Plaintext
import python
|
|
|
|
from Value val, string name
|
|
where
|
|
val = Value::named(name)
|
|
and
|
|
(
|
|
name = "bool" or name = "sys" or name = "sys.argv" or
|
|
name = "ValueError" or name = "slice"
|
|
)
|
|
|
|
select val, name |