Files
codeql/python/ql/test/library-tests/objects/Name.ql
2025-11-26 12:30:31 +00:00

11 lines
245 B
Plaintext

import python
private import LegacyPointsTo
from Object o, string name
where
o.hasLongName(name) and
name in [
"sys.modules", "test.n", "test.l", "test.d", "test.C.meth", "test.C.cmeth", "test.C.smeth"
]
select name, o.toString()