Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--astparser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/astparser.py b/astparser.py
index c026418..93dd224 100644
--- a/astparser.py
+++ b/astparser.py
@@ -207,8 +207,8 @@ class AstParser:
CMPOP_MAP = {
ast.Gt: lambda x, y: x > y,
ast.GtE: lambda x, y: x >= y,
- ast.Is: lambda x, y: x == y,
- ast.IsNot: lambda x, y: x != y,
+ ast.Eq: lambda x, y: x == y,
+ ast.NotEq: lambda x, y: x != y,
ast.Lt: lambda x, y: x < y,
ast.LtE: lambda x, y: x <= y,
}