mirror of
https://github.com/github/codeql.git
synced 2026-01-03 17:50:19 +01:00
9 lines
256 B
Plaintext
9 lines
256 B
Plaintext
import python
|
|
|
|
from Import imp, Alias al
|
|
where
|
|
al = imp.getAName() and
|
|
imp.getLocation().getFile().getShortName() = "test.py"
|
|
select imp.getLocation().getStartLine(), imp.toString(), al.toString(), al.getValue().toString(),
|
|
al.getAsname().toString()
|