Skip to content

Commit 65b2caa

Browse files
committed
Fix make check-c-globals
Remove also debug print() from Tools/c-analyzer/c_parser/preprocessor/gcc.py added by mistake by commit 3200ec6be572897c5da2b1edc28e5c7682914bc4.
1 parent 279b887 commit 65b2caa

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Tools/c-analyzer/c_parser/preprocessor/gcc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ def preprocess(filename,
6969
cwd = os.path.abspath(cwd or '.')
7070
filename = _normpath(filename, cwd)
7171

72-
print(filename)
7372
postargs = POST_ARGS
7473
if os.path.basename(filename) not in USE_LIMITED_C_API:
7574
postargs += ('-DPy_BUILD_CORE=1',)

Tools/c-analyzer/cpython/globals-to-fix.tsv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ Objects/genobject.c - _PyCoroWrapper_Type -
5757
Objects/interpreteridobject.c - PyInterpreterID_Type -
5858
Objects/iterobject.c - PyCallIter_Type -
5959
Objects/iterobject.c - PySeqIter_Type -
60+
Objects/iterobject.c - _PyAnextAwaitable_Type -
6061
Objects/listobject.c - PyListIter_Type -
6162
Objects/listobject.c - PyListRevIter_Type -
6263
Objects/listobject.c - PyList_Type -
@@ -70,6 +71,7 @@ Objects/moduleobject.c - PyModule_Type -
7071
Objects/namespaceobject.c - _PyNamespace_Type -
7172
Objects/object.c - _PyNone_Type -
7273
Objects/object.c - _PyNotImplemented_Type -
74+
Objects/object.c - _PyAnextAwaitable_Type -
7375
Objects/odictobject.c - PyODictItems_Type -
7476
Objects/odictobject.c - PyODictIter_Type -
7577
Objects/odictobject.c - PyODictKeys_Type -
@@ -113,8 +115,6 @@ Objects/codeobject.c - _PyLineIterator -
113115
Objects/codeobject.c - _PyPositionsIterator -
114116
Objects/genericaliasobject.c - _Py_GenericAliasIterType -
115117
# Not in a .h file:
116-
Objects/iterobject.c - _PyAnextAwaitable_Type -
117-
# Not in a .h file:
118118
Objects/memoryobject.c - _PyMemoryIter_Type -
119119
Objects/unicodeobject.c - _PyUnicodeASCIIIter_Type -
120120
Objects/unionobject.c - _PyUnion_Type -

0 commit comments

Comments
 (0)