mirror of
https://github.com/github/codeql.git
synced 2025-12-27 14:16:34 +01:00
10 lines
204 B
Plaintext
10 lines
204 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
|