commit | 4902e69e40b7f73bbb5e02a64260a8cf03651c80 | [log] [tgz] |
---|---|---|
author | Collin Winter <collinw@gmail.com> | Thu Aug 30 18:18:27 2007 +0000 |
committer | Collin Winter <collinw@gmail.com> | Thu Aug 30 18:18:27 2007 +0000 |
tree | 12a2c1b76a83be906e764c5d36e3055232ef70da | |
parent | 6cd2a2036db68874bdf66502f38f33c1824c9e65 [diff] [blame] |
More raise statement normalization.
diff --git a/Parser/asdl.py b/Parser/asdl.py index a3701e6..8fbd9ec 100644 --- a/Parser/asdl.py +++ b/Parser/asdl.py
@@ -103,7 +103,7 @@ def t_default(self, s): r" . +" - raise ValueError, "unmatched input: %r" % s + raise ValueError("unmatched input: %r" % s) class ASDLParser(spark.GenericParser, object): def __init__(self):