mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
More raise statement normalization.
This commit is contained in:
parent
6cd2a2036d
commit
4902e69e40
4 changed files with 8 additions and 8 deletions
|
@ -103,7 +103,7 @@ class ASDLScanner(spark.GenericScanner, object):
|
|||
|
||||
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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue