2021-08-08 09:38:33 +05:30
|
|
|
#ifndef Py_LIMITED_API
|
|
|
|
#ifndef Py_ACCU_H
|
|
|
|
#define Py_ACCU_H
|
2021-08-12 00:42:14 -07:00
|
|
|
#include "third_party/python/Include/object.h"
|
2021-08-10 10:26:13 -07:00
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
/* clang-format off */
|
2021-08-08 09:38:33 +05:30
|
|
|
|
|
|
|
#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 00:42:14 -07: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 09:38:33 +05:30
|
|
|
|
2021-08-10 10:26:13 -07:00
|
|
|
COSMOPOLITAN_C_END_
|
2021-08-08 09:38:33 +05:30
|
|
|
#endif /* Py_ACCU_H */
|
|
|
|
#endif /* Py_LIMITED_API */
|