diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-04-18 09:37:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-18 09:37:26 (GMT) |
commit | 23bace26ec265557697cf3b578b361c178070cd5 (patch) | |
tree | 41d99b73d99a1f8295ed6177113ed7796c8ed784 /Modules/Setup | |
parent | 11efd79076559cc6e4034bb36db73e5e4293f02d (diff) | |
download | cpython-23bace26ec265557697cf3b578b361c178070cd5.zip cpython-23bace26ec265557697cf3b578b361c178070cd5.tar.gz cpython-23bace26ec265557697cf3b578b361c178070cd5.tar.bz2 |
bpo-36635: Add _testinternalcapi module (GH-12841)
Add a new _testinternalcapi module to test the internal C API.
Move _Py_GetConfigsAsDict() function to the internal C API:
_testembed now uses _testinternalcapi to access the function.
Diffstat (limited to 'Modules/Setup')
-rw-r--r-- | Modules/Setup | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/Setup b/Modules/Setup index 03aa0f1..e729ab8 100644 --- a/Modules/Setup +++ b/Modules/Setup @@ -173,6 +173,7 @@ _symtable symtablemodule.c #_struct _struct.c # binary structure packing/unpacking #_weakref _weakref.c # basic weak reference support #_testcapi _testcapimodule.c # Python C API test module +#_testinternalcapi _testinternalcapi.c -I$(srcdir)/Include/internal -DPy_BUILD_CORE_MODULE # Python internal C API test module #_random _randommodule.c # Random number generator #_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator #_pickle _pickle.c # pickle accelerator |