Files
codeql/python/ql/test/3/library-tests/modules/general/moduleobject_test.ql
2019-02-08 14:39:27 +00:00

7 lines
161 B
Plaintext

import python
from ModuleObject m, string name
where not m.isC() and not m.getName() = "__future__"
select m.toString(), name, m.getAttribute(name).toString()