mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
7 lines
201 B
Plaintext
7 lines
201 B
Plaintext
import python
|
|
import semmle.python.Comparisons
|
|
|
|
from Comparison c, ControlFlowNode l, CompareOp op, float k
|
|
where c.tests(l, op, k)
|
|
select c.getLocation().getStartLine(), l + " " + op.repr() + " " + k
|