mirror of https://github.com/python/cpython
67 lines
2.5 KiB
C
67 lines
2.5 KiB
C
#ifndef Py_TESTCAPI_PARTS_H
|
|
#define Py_TESTCAPI_PARTS_H
|
|
|
|
// Always enable assertions
|
|
#undef NDEBUG
|
|
|
|
#ifdef PYTESTCAPI_NEED_INTERNAL_API
|
|
# ifndef Py_BUILD_CORE_BUILTIN
|
|
# define Py_BUILD_CORE_MODULE 1
|
|
# endif
|
|
#else
|
|
// The _testcapi extension tests the public C API: header files in Include/
|
|
// and Include/cpython/ directories. The internal C API must not be tested
|
|
// by _testcapi: use _testinternalcapi for that.
|
|
//
|
|
// _testcapi C files can built with the Py_BUILD_CORE_BUILTIN macro defined
|
|
// if one of the Modules/Setup files asks to build _testcapi as "static"
|
|
// (gh-109723).
|
|
//
|
|
// The Visual Studio projects builds _testcapi with Py_BUILD_CORE_MODULE.
|
|
# undef Py_BUILD_CORE_MODULE
|
|
# undef Py_BUILD_CORE_BUILTIN
|
|
#endif
|
|
|
|
#include "Python.h"
|
|
|
|
#if defined(Py_BUILD_CORE) && !defined(PYTESTCAPI_NEED_INTERNAL_API)
|
|
# error "_testcapi must test the public Python C API, not the internal C API"
|
|
#endif
|
|
|
|
int _PyTestCapi_Init_Vectorcall(PyObject *module);
|
|
int _PyTestCapi_Init_Heaptype(PyObject *module);
|
|
int _PyTestCapi_Init_Abstract(PyObject *module);
|
|
int _PyTestCapi_Init_ByteArray(PyObject *module);
|
|
int _PyTestCapi_Init_Bytes(PyObject *module);
|
|
int _PyTestCapi_Init_Unicode(PyObject *module);
|
|
int _PyTestCapi_Init_GetArgs(PyObject *module);
|
|
int _PyTestCapi_Init_DateTime(PyObject *module);
|
|
int _PyTestCapi_Init_Docstring(PyObject *module);
|
|
int _PyTestCapi_Init_Mem(PyObject *module);
|
|
int _PyTestCapi_Init_Watchers(PyObject *module);
|
|
int _PyTestCapi_Init_Long(PyObject *module);
|
|
int _PyTestCapi_Init_Float(PyObject *module);
|
|
int _PyTestCapi_Init_Complex(PyObject *module);
|
|
int _PyTestCapi_Init_Numbers(PyObject *module);
|
|
int _PyTestCapi_Init_Dict(PyObject *module);
|
|
int _PyTestCapi_Init_Set(PyObject *module);
|
|
int _PyTestCapi_Init_List(PyObject *module);
|
|
int _PyTestCapi_Init_Tuple(PyObject *module);
|
|
int _PyTestCapi_Init_Structmember(PyObject *module);
|
|
int _PyTestCapi_Init_Exceptions(PyObject *module);
|
|
int _PyTestCapi_Init_Code(PyObject *module);
|
|
int _PyTestCapi_Init_Buffer(PyObject *module);
|
|
int _PyTestCapi_Init_PyAtomic(PyObject *module);
|
|
int _PyTestCapi_Init_PyOS(PyObject *module);
|
|
int _PyTestCapi_Init_File(PyObject *module);
|
|
int _PyTestCapi_Init_Codec(PyObject *module);
|
|
int _PyTestCapi_Init_Immortal(PyObject *module);
|
|
int _PyTestCapi_Init_GC(PyObject *module);
|
|
int _PyTestCapi_Init_Sys(PyObject *module);
|
|
int _PyTestCapi_Init_Hash(PyObject *module);
|
|
|
|
int _PyTestCapi_Init_VectorcallLimited(PyObject *module);
|
|
int _PyTestCapi_Init_HeaptypeRelative(PyObject *module);
|
|
|
|
#endif // Py_TESTCAPI_PARTS_H
|