Files
codeql/python/ql/test/3/library-tests/modules/general/moduleobject_test.ql
2020-03-30 11:59:10 +02:00

6 lines
160 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()