Files
codeql/python/ql/examples/snippets/builtin_object.ql
2019-07-26 17:47:11 +02:00

15 lines
294 B
Plaintext

/**
* @id py/examples/builtin-object
* @name Builtin objects
* @description Finds expressions that refer to an object in the builtins module (like int or None).
* @tags reference
* builtin
* object
*/
import python
from Expr e
where e.refersTo(builtin_object(_))
select e