mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
7 lines
231 B
Plaintext
7 lines
231 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()
|