2021-08-08 04:08:33 +00:00
|
|
|
#ifndef Py_LIMITED_API
|
|
|
|
#ifndef Py_ACCU_H
|
|
|
|
#define Py_ACCU_H
|
2021-08-12 07:42:14 +00:00
|
|
|
#include "third_party/python/Include/object.h"
|
2021-08-10 17:26:13 +00:00
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
/* clang-format off */
|
2021-08-08 04:08:33 +00:00
|
|
|
|
|
|
|
#undef small /* defined by some Windows headers */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
PyObject *large; /* A list of previously accumulated large strings */
|
|
|
|
PyObject *small; /* Pending small strings */
|
|
|
|
} _PyAccu;
|
|
|
|
|
2021-08-12 07:42:14 +00:00
|
|
|
int _PyAccu_Init(_PyAccu *acc);
|
|
|
|
int _PyAccu_Accumulate(_PyAccu *acc, PyObject *unicode);
|
|
|
|
PyObject * _PyAccu_FinishAsList(_PyAccu *acc);
|
|
|
|
PyObject * _PyAccu_Finish(_PyAccu *acc);
|
|
|
|
void _PyAccu_Destroy(_PyAccu *acc);
|
2021-08-08 04:08:33 +00:00
|
|
|
|
2021-08-10 17:26:13 +00:00
|
|
|
COSMOPOLITAN_C_END_
|
2021-08-08 04:08:33 +00:00
|
|
|
#endif /* Py_ACCU_H */
|
|
|
|
#endif /* Py_LIMITED_API */
|