mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
9 lines
233 B
Plaintext
9 lines
233 B
Plaintext
|
|
import python
|
|
import semmle.python.TestUtils
|
|
|
|
|
|
from Compare comp, Expr left, Expr right, Cmpop op
|
|
where comp.compares(left, op, right)
|
|
select compact_location(comp), comp.toString(), left.toString(), op.toString(), right.toString()
|