Skip to content

Commit 681502e

Browse files
add more wordings of containment operator
1 parent 02921bc commit 681502e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

json_runner.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,7 @@ def op_800_contains(self, left, right): return [right in left]
478478
def op_800_doesnAPOSt_contain(self, left, right): return [
479479
right not in left]
480480
op_800_doesnAPOSt_have = op_800_doesnAPOSt_contain
481+
op_800_does_not_have = op_800_does_not_contain = op_800_doesnAPOSt_contain
481482
def op_900_ANDAND(self, left, right): return [left and right]
482483
op_900_and = op_900_ANDAND
483484
def op_900_PIPEPIPE(self, left, right): return [left or right]

0 commit comments

Comments
 (0)