diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-09-12 03:49:31 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-09-12 03:49:31 (GMT) |
commit | 0e9980f75a203ee1b2ac28f76a76239446b271d6 (patch) | |
tree | d1691347ed42925a68cebb2647d83dba6d45cb55 /Tools/compiler | |
parent | 2ee8099bd82b5eea9a3efc54f7bcdd12b54f84cf (diff) | |
download | cpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.zip cpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.tar.gz cpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Tools/compiler')
-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 0156567..4ccc54d 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 |