2023-09-02 00:46:36 +00:00
|
|
|
#ifndef Py_TESTINTERNALCAPI_PARTS_H
|
|
|
|
|
#define Py_TESTINTERNALCAPI_PARTS_H
|
|
|
|
|
|
|
|
|
|
// Always enable assertions
|
|
|
|
|
#undef NDEBUG
|
|
|
|
|
|
|
|
|
|
#ifndef Py_BUILD_CORE_BUILTIN
|
|
|
|
|
# define Py_BUILD_CORE_MODULE 1
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "Python.h"
|
|
|
|
|
|
2023-09-19 11:54:29 -04:00
|
|
|
int _PyTestInternalCapi_Init_Lock(PyObject *module);
|
2023-09-02 00:46:36 +00:00
|
|
|
int _PyTestInternalCapi_Init_PyTime(PyObject *module);
|
2023-10-10 19:00:05 +03:00
|
|
|
int _PyTestInternalCapi_Init_Set(PyObject *module);
|
2025-04-22 15:18:18 +03:00
|
|
|
int _PyTestInternalCapi_Init_Complex(PyObject *module);
|
2023-11-08 17:39:29 -05:00
|
|
|
int _PyTestInternalCapi_Init_CriticalSection(PyObject *module);
|
2023-09-02 00:46:36 +00:00
|
|
|
|
|
|
|
|
#endif // Py_TESTINTERNALCAPI_PARTS_H
|