1 parent ecac24c commit d2ff530Copy full SHA for d2ff530
1 file changed
pythonbpf/expr_pass.py
@@ -228,6 +228,8 @@ def _handle_comparator(func, builder, op, lhs, rhs):
228
ast.LtE: "<=",
229
ast.Gt: ">",
230
ast.GtE: ">=",
231
+ ast.Is: "==",
232
+ ast.IsNot: "!=",
233
}
234
235
if type(op) not in comparison_ops:
0 commit comments