Files
codeql/python/ql/test/3/library-tests/classes/mro/mro_index.ql
2019-02-08 14:39:27 +00:00

13 lines
233 B
Plaintext

/**
* @name class_attr
* @kind test
* @problem.severity warning
*/
import python
from ClassObject cls, ClassObject sup, int index
where sup = cls.getMroItem(index) and
not cls.isC()
select cls.toString(), index, sup.toString()