Files
codeql/python/ql/test/3/library-tests/classes/mro/mro_index.ql
2020-03-30 11:59:10 +02:00

14 lines
241 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()