Tuplex crashes when the the `is` keyword is used with a non-boolean or non-none type argument. Example: ``` c = Context() c.parallelize([1, 2, 3]).filter(lambda x: x is 2).collect() ```