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

18 lines
428 B
Plaintext

/**
* @id py/examples/print
* @name Find prints
* @description Find print statements or calls to the builtin function 'print'
* @tags print
*/
import python
from AstNode print
where
/* Python 2 without `from __future__ import print_function` */
print instanceof Print
or
/* Python 3 or with `from __future__ import print_function` */
print.(Call).getFunc().refersTo(thePrintFunction())
select print