mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
bpo-36876: Small adjustments to the C-analyzer tool. (GH-23045)
This is a little bit of clean-up, small fixes, and additional helpers prior to building an updated & accurate list of globals to eliminate.
This commit is contained in:
parent
b9ee4af4c6
commit
4fe72090de
16 changed files with 632 additions and 217 deletions
|
|
@ -3,15 +3,19 @@ from c_parser.info import (
|
|||
TypeDeclaration,
|
||||
POTSType,
|
||||
FuncPtr,
|
||||
)
|
||||
from c_parser.match import (
|
||||
is_pots,
|
||||
is_funcptr,
|
||||
)
|
||||
from .info import (
|
||||
IGNORED,
|
||||
UNKNOWN,
|
||||
is_system_type,
|
||||
SystemType,
|
||||
)
|
||||
from .match import (
|
||||
is_system_type,
|
||||
)
|
||||
|
||||
|
||||
def get_typespecs(typedecls):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue