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