From 301eb7e607be6ea15c7a1e792f1cb927ba423932 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 29 Aug 2023 04:05:11 +0200 Subject: gh-106320: Remove _PyAnextAwaitable_Type from the public C API (#108597) It's not needed to declare it in Include/iterobject.h: just use "extern" where it's used (only in object.c). --- Tools/c-analyzer/c_parser/preprocessor/gcc.py | 1 - 1 file changed, 1 deletion(-) (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 55cc2d37e1e..18d1b1a5d0a 100644 --- a/Tools/c-analyzer/c_parser/preprocessor/gcc.py +++ b/Tools/c-analyzer/c_parser/preprocessor/gcc.py @@ -69,7 +69,6 @@ def preprocess(filename, cwd = os.path.abspath(cwd or '.') filename = _normpath(filename, cwd) - print(filename) postargs = POST_ARGS if os.path.basename(filename) not in USE_LIMITED_C_API: postargs += ('-DPy_BUILD_CORE=1',) -- cgit v1.2.3