diff options
author | Victor Stinner <vstinner@python.org> | 2023-08-29 04:05:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-29 02:05:11 +0000 |
commit | 301eb7e607be6ea15c7a1e792f1cb927ba423932 (patch) | |
tree | e3a3130b50db6abbca66ba1d04dbc6122bc7d758 /Tools/c-analyzer/c_parser/preprocessor/gcc.py | |
parent | 39506ee565ce819e14e8071227fc53b8dcb6a788 (diff) | |
download | cpython-301eb7e607be6ea15c7a1e792f1cb927ba423932.tar.gz cpython-301eb7e607be6ea15c7a1e792f1cb927ba423932.zip |
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).
Diffstat (limited to 'Tools/c-analyzer/c_parser/preprocessor/gcc.py')
-rw-r--r-- | Tools/c-analyzer/c_parser/preprocessor/gcc.py | 1 |
1 files changed, 0 insertions, 1 deletions
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',) |