mirror of
https://github.com/github/codeql.git
synced 2026-01-04 10:10:20 +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
|