diff options
author | Victor Stinner <vstinner@python.org> | 2023-08-26 03:18:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-26 03:18:09 +0200 |
commit | 6353c21b78a3d91e7cd7810f1c00258a34e85fe7 (patch) | |
tree | fdb9e8068ae4f9fd472718cea32dab935b5064a6 /Tools/c-analyzer/c_parser/preprocessor/gcc.py | |
parent | 713afb8804666405f29115cf459b591308e3ab54 (diff) | |
download | cpython-6353c21b78a3d91e7cd7810f1c00258a34e85fe7.tar.gz cpython-6353c21b78a3d91e7cd7810f1c00258a34e85fe7.zip |
gh-106320: Remove private _PyLong_FileDescriptor_Converter() (#108503)
Move the private _PyLong converter functions to the internal C API
* _PyLong_FileDescriptor_Converter(): moved to pycore_fileutils.h
* _PyLong_Size_t_Converter(): moved to pycore_long.h
Argument Clinic now emits includes for pycore_fileutils.h and
pycore_long.h when these functions are used.
Diffstat (limited to 'Tools/c-analyzer/c_parser/preprocessor/gcc.py')
-rw-r--r-- | Tools/c-analyzer/c_parser/preprocessor/gcc.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tools/c-analyzer/c_parser/preprocessor/gcc.py b/Tools/c-analyzer/c_parser/preprocessor/gcc.py index 62538f53c25..de9a2484de8 100644 --- a/Tools/c-analyzer/c_parser/preprocessor/gcc.py +++ b/Tools/c-analyzer/c_parser/preprocessor/gcc.py @@ -12,13 +12,16 @@ NEED_BUILD_CORE = { 'multibytecodec.h', 'socketmodule.h', - # Argument Clinic ".c.h" files + # Argument Clinic ".c.h" header files '_testclinic.c.h', '_testclinic_depr.c.h', + '_winapi.c.h', + 'fcntlmodule.c.h', 'overlapped.c.h', 'posixmodule.c.h', 'selectmodule.c.h', 'sha3module.c.h', + 'termios.c.h', } TOOL = 'gcc' |