2020-06-22 15:27:35 +00:00
|
|
|
#ifndef Py_INTERNAL_TUPLE_H
|
|
|
|
#define Py_INTERNAL_TUPLE_H
|
2018-11-25 22:56:17 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-04-17 21:02:26 +00:00
|
|
|
#ifndef Py_BUILD_CORE
|
|
|
|
# error "this header requires Py_BUILD_CORE define"
|
2018-11-25 22:56:17 +00:00
|
|
|
#endif
|
|
|
|
|
2019-10-02 21:51:20 +00:00
|
|
|
#include "tupleobject.h" /* _PyTuple_CAST() */
|
2018-11-25 22:56:17 +00:00
|
|
|
|
|
|
|
#define _PyTuple_ITEMS(op) (_PyTuple_CAST(op)->ob_item)
|
2020-06-22 15:27:35 +00:00
|
|
|
|
2021-05-25 13:58:14 +00:00
|
|
|
extern PyObject *_PyTuple_FromArray(PyObject *const *, Py_ssize_t);
|
2021-10-09 15:51:30 +00:00
|
|
|
extern PyObject *_PyTuple_FromArraySteal(PyObject *const *, Py_ssize_t);
|
2018-11-25 22:56:17 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2020-06-22 15:27:35 +00:00
|
|
|
#endif /* !Py_INTERNAL_TUPLE_H */
|