diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-08-29 18:12:30 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-08-29 18:12:30 (GMT) |
commit | 7abf520d6c8c820f42332d51c58a192db658ac29 (patch) | |
tree | 933f1921e6a0c3c70ee7726adc8cccb7898c8d2c /Lib/compiler | |
parent | d4be10dc2c8454779e1f84cf9d1ab04daf310719 (diff) | |
download | cpython-7abf520d6c8c820f42332d51c58a192db658ac29.zip cpython-7abf520d6c8c820f42332d51c58a192db658ac29.tar.gz cpython-7abf520d6c8c820f42332d51c58a192db658ac29.tar.bz2 |
Add support for // and //=.
Avoid if/elif/elif/else tests where the final else is supposed to
handle exactly one case instead of all other cases. When the list of
operators is extended, the catchall else treats all new operators as
the last operator in the set of tests. Instead, raise an exception if
an unexpected operator occurs.
Diffstat (limited to 'Lib/compiler')
-rw-r--r-- | Lib/compiler/transformer.py | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/Lib/compiler/transformer.py b/Lib/compiler/transformer.py index 7f61595..323aa20 100644 --- a/Lib/compiler/transformer.py +++ b/Lib/compiler/transformer.py @@ -588,9 +588,11 @@ class Transformer: if nodelist[i-1][0] == token.LEFTSHIFT: node = LeftShift([node, right]) node.lineno = nodelist[1][2] - else: + elif nodelist[i-1][0] == token.RIGHTSHIFT: node = RightShift([node, right]) node.lineno = nodelist[1][2] + else: + raise ValueError, "unexpected token: %s" % nodelist[i-1][0] return node def arith_expr(self, nodelist): @@ -600,9 +602,11 @@ class Transformer: if nodelist[i-1][0] == token.PLUS: node = Add([node, right]) node.lineno = nodelist[1][2] - else: + elif nodelist[i-1][0] == token.MINUS: node = Sub([node, right]) node.lineno = nodelist[1][2] + else: + raise ValueError, "unexpected token: %s" % nodelist[i-1][0] return node def term(self, nodelist): @@ -614,8 +618,12 @@ class Transformer: node = Mul([node, right]) elif t == token.SLASH: node = Div([node, right]) - else: + elif t == token.PERCENT: node = Mod([node, right]) + elif t == token.DOUBLESLASH: + node = FloorDiv([node, right]) + else: + raise ValueError, "unexpected token: %s" % t node.lineno = nodelist[1][2] return node @@ -750,10 +758,13 @@ class Transformer: if i < len(nodelist): # should be DOUBLESTAR or STAR STAR - if nodelist[i][0] == token.DOUBLESTAR: + t = nodelist[i][0] + if t == token.DOUBLESTAR: node = nodelist[i+1] - else: + elif t == token.STARSTAR: node = nodelist[i+2] + else: + raise ValueError, "unexpected token: %s" % t names.append(node[1]) flags = flags | CO_VARKEYWORDS |