diff options
author | Guido van Rossum <guido@python.org> | 2006-08-28 15:27:34 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-08-28 15:27:34 (GMT) |
commit | 86e58e239e39845e706c4afa392423f0fedcdf39 (patch) | |
tree | 1d0f4d942e644ee5c903636d87176b98a7203371 /Tools | |
parent | ecfd0b2f3bfd622c3ba148e53d3feebb8c1ae721 (diff) | |
download | cpython-86e58e239e39845e706c4afa392423f0fedcdf39.zip cpython-86e58e239e39845e706c4afa392423f0fedcdf39.tar.gz cpython-86e58e239e39845e706c4afa392423f0fedcdf39.tar.bz2 |
SF patch 1547796 by Georg Brandl -- set literals.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/compiler/ast.txt | 4 | ||||
-rw-r--r-- | Tools/compiler/astgen.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Tools/compiler/ast.txt b/Tools/compiler/ast.txt index 7968a52..0db14d7 100644 --- a/Tools/compiler/ast.txt +++ b/Tools/compiler/ast.txt @@ -50,11 +50,11 @@ GenExprFor: assign, iter, ifs! GenExprIf: test List: nodes! Dict: items! +Set: items! Not: expr Compare: expr, ops! Name: name* Global: names* -Backquote: expr Getattr: expr, attrname* CallFunc: node, args!, star_args& = None, dstar_args& = None Keyword: name*, expr @@ -97,7 +97,7 @@ init(Lambda): self.kwargs = 1 init(GenExpr): - self.argnames = ['[outmost-iterable]'] + self.argnames = ['.0'] self.varargs = self.kwargs = None init(GenExprFor): diff --git a/Tools/compiler/astgen.py b/Tools/compiler/astgen.py index 59b98f2..26a185b 100644 --- a/Tools/compiler/astgen.py +++ b/Tools/compiler/astgen.py @@ -235,7 +235,7 @@ if __name__ == "__main__": This file is automatically generated by Tools/compiler/astgen.py """ -from consts import CO_VARARGS, CO_VARKEYWORDS +from compiler.consts import CO_VARARGS, CO_VARKEYWORDS def flatten(seq): l = [] |