From 713afb8804666405f29115cf459b591308e3ab54 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 26 Aug 2023 02:24:27 +0200 Subject: gh-106320: Remove private _PyLong converter functions (#108499) Move these private functions to the internal C API (pycore_long.h): * _PyLong_UnsignedInt_Converter() * _PyLong_UnsignedLongLong_Converter() * _PyLong_UnsignedLong_Converter() * _PyLong_UnsignedShort_Converter() Argument Clinic now emits #include "pycore_long.h" when these functions are used. --- Tools/c-analyzer/c_parser/preprocessor/gcc.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Tools/c-analyzer/c_parser/preprocessor/gcc.py') diff --git a/Tools/c-analyzer/c_parser/preprocessor/gcc.py b/Tools/c-analyzer/c_parser/preprocessor/gcc.py index 415a2ba63df..62538f53c25 100644 --- a/Tools/c-analyzer/c_parser/preprocessor/gcc.py +++ b/Tools/c-analyzer/c_parser/preprocessor/gcc.py @@ -7,9 +7,18 @@ from . import common as _common # macro. Usually it's defined by the C file which includes it. # Other header files have a similar issue. NEED_BUILD_CORE = { + # Header ".h" files 'cjkcodecs.h', 'multibytecodec.h', 'socketmodule.h', + + # Argument Clinic ".c.h" files + '_testclinic.c.h', + '_testclinic_depr.c.h', + 'overlapped.c.h', + 'posixmodule.c.h', + 'selectmodule.c.h', + 'sha3module.c.h', } TOOL = 'gcc' -- cgit v1.2.3