mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
gh-102033: Fix syntax error in Tools/c-analyzer
(GH-102066)
The easiest way to format strings with `{}` meaningful chars is via `%`.
This commit is contained in:
parent
7559f5fda9
commit
1ca315538f
14 changed files with 3 additions and 335 deletions
|
@ -1,6 +1,5 @@
|
|||
from collections import namedtuple
|
||||
import enum
|
||||
import os.path
|
||||
import re
|
||||
|
||||
from c_common import fsutil
|
||||
|
@ -8,7 +7,7 @@ from c_common.clsutil import classonly
|
|||
import c_common.misc as _misc
|
||||
import c_common.strutil as _strutil
|
||||
import c_common.tables as _tables
|
||||
from .parser._regexes import SIMPLE_TYPE, _STORAGE
|
||||
from .parser._regexes import _STORAGE
|
||||
|
||||
|
||||
FIXED_TYPE = _misc.Labeled('FIXED_TYPE')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue