#include "parts.h"
#include "util.h"
static PyObject *
bytes_check(PyObject *Py_UNUSED(module), PyObject *obj)
{ … }
static PyObject *
bytes_checkexact(PyObject *Py_UNUSED(module), PyObject *obj)
{ … }
static PyObject *
bytes_fromstringandsize(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyObject *
bytes_fromstring(PyObject *Py_UNUSED(module), PyObject *arg)
{ … }
static PyObject *
bytes_fromobject(PyObject *Py_UNUSED(module), PyObject *arg)
{ … }
static PyObject *
bytes_size(PyObject *Py_UNUSED(module), PyObject *arg)
{ … }
static PyObject *
bytes_asstring(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyObject *
bytes_asstringandsize(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyObject *
bytes_asstringandsize_null(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyObject *
bytes_repr(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyObject *
bytes_concat(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyObject *
bytes_concatanddel(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyObject *
bytes_decodeescape(PyObject *Py_UNUSED(module), PyObject *args)
{ … }
static PyMethodDef test_methods[] = …;
int
_PyTestLimitedCAPI_Init_Bytes(PyObject *m)
{ … }