mirror of https://github.com/python/cpython
Fix syntax in generate_re_casefix.py (#122699)
This was broken in gh-97963.
This commit is contained in:
parent
e74680b718
commit
b72c748d7f
|
@ -1,4 +1,4 @@
|
|||
# Auto-generated by Tools/scripts/generate_re_casefix.py.
|
||||
# Auto-generated by Tools/build/generate_re_casefix.py.
|
||||
|
||||
# Maps the code of lowercased character to codes of different lowercased
|
||||
# characters which have the same uppercase.
|
||||
|
|
|
@ -23,9 +23,9 @@ re_casefix_template = f"""\
|
|||
|
||||
# Maps the code of lowercased character to codes of different lowercased
|
||||
# characters which have the same uppercase.
|
||||
_EXTRA_CASES = {
|
||||
_EXTRA_CASES = {{
|
||||
%s
|
||||
}
|
||||
}}
|
||||
"""
|
||||
|
||||
def uname(i):
|
||||
|
|
Loading…
Reference in New Issue