Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2a7d7f commit 4740d1bCopy full SHA for 4740d1b
Tools/c-analyzer/c_parser/preprocessor/gcc.py
@@ -3,13 +3,18 @@
3
4
from . import common as _common
5
6
-# The following C files must not be built with Py_BUILD_CORE,
7
-# because they use the limited C API.
+# The following C files defines the Py_LIMITED_API macro, and so must not be
+# built with the Py_BUILD_CORE macro defined.
8
USE_LIMITED_C_API = frozenset((
9
+ # Modules/
10
'_testcapimodule.c',
11
'_testclinic_limited.c',
12
'xxlimited.c',
13
'xxlimited_35.c',
14
+
15
+ # Modules/_testcapi/
16
+ 'heaptype_relative.c',
17
+ 'vectorcall_limited.c',
18
))
19
20
TOOL = 'gcc'
0 commit comments