diff options
Diffstat (limited to 'Tools/compiler/astgen.py')
-rw-r--r-- | Tools/compiler/astgen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/compiler/astgen.py b/Tools/compiler/astgen.py index 0156567ceb..4ccc54d638 100644 --- a/Tools/compiler/astgen.py +++ b/Tools/compiler/astgen.py @@ -283,4 +283,4 @@ class Expression(Node): ### EPILOGUE for name, obj in globals().items(): if isinstance(obj, type) and issubclass(obj, Node): - nodes[name.lower()] = obj + nodes[name.lower()] = obj |