mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Get rid of all two uses of backticks (bad Jeremy!).
This commit is contained in:
parent
f1624cd2d6
commit
0e1cff56b4
2 changed files with 2 additions and 2 deletions
|
|
@ -98,7 +98,7 @@ class ASDLScanner(spark.GenericScanner, object):
|
|||
|
||||
def t_default(self, s):
|
||||
r" . +"
|
||||
raise ValueError, "unmatched input: %s" % `s`
|
||||
raise ValueError, "unmatched input: %s" % repr(s)
|
||||
|
||||
class ASDLParser(spark.GenericParser, object):
|
||||
def __init__(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue