/* * Test the limited C API. * * The 'test_*' functions exported by this module are run as part of the * standard Python regression test, via Lib/test/test_capi.py. */ #include "_testlimitedcapi/parts.h" static PyMethodDef TestMethods[] = …; static struct PyModuleDef _testlimitedcapimodule = …; PyMODINIT_FUNC PyInit__testlimitedcapi(void) { … }