#include "parts.h"
#include "util.h"
static PyObject *
bytearray_check(PyObject *Py_UNUSED(module), PyObject *obj)
{ … }
static PyObject *
bytearray_checkexact(PyObject *Py_UNUSED(module), PyObject *obj)
{ … }
static PyObject *
bytearray_fromstringandsize(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyObject *
bytearray_fromobject(PyObject *Py_UNUSED(module), PyObject *arg)
{ … }
static PyObject *
bytearray_size(PyObject *Py_UNUSED(module), PyObject *arg)
{ … }
static PyObject *
bytearray_asstring(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyObject *
bytearray_concat(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyObject *
bytearray_resize(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyMethodDef test_methods[] = …;
int
_PyTestLimitedCAPI_Init_ByteArray(PyObject *m)
{ … }