2023-09-02 02:46:36 +02: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 17:54:29 +02:00
|
|
|
int _PyTestInternalCapi_Init_Lock(PyObject *module);
|
2023-09-02 02:46:36 +02:00
|
|
|
int _PyTestInternalCapi_Init_PyTime(PyObject *module);
|
2023-10-10 18:00:05 +02:00
|
|
|
int _PyTestInternalCapi_Init_Set(PyObject *module);
|
2023-11-08 23:39:29 +01:00
|
|
|
int _PyTestInternalCapi_Init_CriticalSection(PyObject *module);
|
2023-09-02 02:46:36 +02:00
|
|
|
|
|
|
|
#endif // Py_TESTINTERNALCAPI_PARTS_H
|