123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290 |
- /*[clinic input]
- preserve
- [clinic start generated code]*/
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- # include "pycore_gc.h" // PyGC_Head
- # include "pycore_runtime.h" // _Py_ID()
- #endif
- static int
- bytearray___init___impl(PyByteArrayObject *self, PyObject *arg,
- const char *encoding, const char *errors);
- static int
- bytearray___init__(PyObject *self, PyObject *args, PyObject *kwargs)
- {
- int return_value = -1;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 3
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(source), &_Py_ID(encoding), &_Py_ID(errors), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"source", "encoding", "errors", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "bytearray",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[3];
- PyObject * const *fastargs;
- Py_ssize_t nargs = PyTuple_GET_SIZE(args);
- Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0;
- PyObject *arg = NULL;
- const char *encoding = NULL;
- const char *errors = NULL;
- fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 3, 0, argsbuf);
- if (!fastargs) {
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- if (fastargs[0]) {
- arg = fastargs[0];
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- if (fastargs[1]) {
- if (!PyUnicode_Check(fastargs[1])) {
- _PyArg_BadArgument("bytearray", "argument 'encoding'", "str", fastargs[1]);
- goto exit;
- }
- Py_ssize_t encoding_length;
- encoding = PyUnicode_AsUTF8AndSize(fastargs[1], &encoding_length);
- if (encoding == NULL) {
- goto exit;
- }
- if (strlen(encoding) != (size_t)encoding_length) {
- PyErr_SetString(PyExc_ValueError, "embedded null character");
- goto exit;
- }
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- if (!PyUnicode_Check(fastargs[2])) {
- _PyArg_BadArgument("bytearray", "argument 'errors'", "str", fastargs[2]);
- goto exit;
- }
- Py_ssize_t errors_length;
- errors = PyUnicode_AsUTF8AndSize(fastargs[2], &errors_length);
- if (errors == NULL) {
- goto exit;
- }
- if (strlen(errors) != (size_t)errors_length) {
- PyErr_SetString(PyExc_ValueError, "embedded null character");
- goto exit;
- }
- skip_optional_pos:
- return_value = bytearray___init___impl((PyByteArrayObject *)self, arg, encoding, errors);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_clear__doc__,
- "clear($self, /)\n"
- "--\n"
- "\n"
- "Remove all items from the bytearray.");
- #define BYTEARRAY_CLEAR_METHODDEF \
- {"clear", (PyCFunction)bytearray_clear, METH_NOARGS, bytearray_clear__doc__},
- static PyObject *
- bytearray_clear_impl(PyByteArrayObject *self);
- static PyObject *
- bytearray_clear(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))
- {
- return bytearray_clear_impl(self);
- }
- PyDoc_STRVAR(bytearray_copy__doc__,
- "copy($self, /)\n"
- "--\n"
- "\n"
- "Return a copy of B.");
- #define BYTEARRAY_COPY_METHODDEF \
- {"copy", (PyCFunction)bytearray_copy, METH_NOARGS, bytearray_copy__doc__},
- static PyObject *
- bytearray_copy_impl(PyByteArrayObject *self);
- static PyObject *
- bytearray_copy(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))
- {
- return bytearray_copy_impl(self);
- }
- PyDoc_STRVAR(bytearray_removeprefix__doc__,
- "removeprefix($self, prefix, /)\n"
- "--\n"
- "\n"
- "Return a bytearray with the given prefix string removed if present.\n"
- "\n"
- "If the bytearray starts with the prefix string, return\n"
- "bytearray[len(prefix):]. Otherwise, return a copy of the original\n"
- "bytearray.");
- #define BYTEARRAY_REMOVEPREFIX_METHODDEF \
- {"removeprefix", (PyCFunction)bytearray_removeprefix, METH_O, bytearray_removeprefix__doc__},
- static PyObject *
- bytearray_removeprefix_impl(PyByteArrayObject *self, Py_buffer *prefix);
- static PyObject *
- bytearray_removeprefix(PyByteArrayObject *self, PyObject *arg)
- {
- PyObject *return_value = NULL;
- Py_buffer prefix = {NULL, NULL};
- if (PyObject_GetBuffer(arg, &prefix, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&prefix, 'C')) {
- _PyArg_BadArgument("removeprefix", "argument", "contiguous buffer", arg);
- goto exit;
- }
- return_value = bytearray_removeprefix_impl(self, &prefix);
- exit:
- /* Cleanup for prefix */
- if (prefix.obj) {
- PyBuffer_Release(&prefix);
- }
- return return_value;
- }
- PyDoc_STRVAR(bytearray_removesuffix__doc__,
- "removesuffix($self, suffix, /)\n"
- "--\n"
- "\n"
- "Return a bytearray with the given suffix string removed if present.\n"
- "\n"
- "If the bytearray ends with the suffix string and that suffix is not\n"
- "empty, return bytearray[:-len(suffix)]. Otherwise, return a copy of\n"
- "the original bytearray.");
- #define BYTEARRAY_REMOVESUFFIX_METHODDEF \
- {"removesuffix", (PyCFunction)bytearray_removesuffix, METH_O, bytearray_removesuffix__doc__},
- static PyObject *
- bytearray_removesuffix_impl(PyByteArrayObject *self, Py_buffer *suffix);
- static PyObject *
- bytearray_removesuffix(PyByteArrayObject *self, PyObject *arg)
- {
- PyObject *return_value = NULL;
- Py_buffer suffix = {NULL, NULL};
- if (PyObject_GetBuffer(arg, &suffix, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&suffix, 'C')) {
- _PyArg_BadArgument("removesuffix", "argument", "contiguous buffer", arg);
- goto exit;
- }
- return_value = bytearray_removesuffix_impl(self, &suffix);
- exit:
- /* Cleanup for suffix */
- if (suffix.obj) {
- PyBuffer_Release(&suffix);
- }
- return return_value;
- }
- PyDoc_STRVAR(bytearray_translate__doc__,
- "translate($self, table, /, delete=b\'\')\n"
- "--\n"
- "\n"
- "Return a copy with each character mapped by the given translation table.\n"
- "\n"
- " table\n"
- " Translation table, which must be a bytes object of length 256.\n"
- "\n"
- "All characters occurring in the optional argument delete are removed.\n"
- "The remaining characters are mapped through the given translation table.");
- #define BYTEARRAY_TRANSLATE_METHODDEF \
- {"translate", _PyCFunction_CAST(bytearray_translate), METH_FASTCALL|METH_KEYWORDS, bytearray_translate__doc__},
- static PyObject *
- bytearray_translate_impl(PyByteArrayObject *self, PyObject *table,
- PyObject *deletechars);
- static PyObject *
- bytearray_translate(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 1
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(delete), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"", "delete", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "translate",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[2];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
- PyObject *table;
- PyObject *deletechars = NULL;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 2, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- table = args[0];
- if (!noptargs) {
- goto skip_optional_pos;
- }
- deletechars = args[1];
- skip_optional_pos:
- return_value = bytearray_translate_impl(self, table, deletechars);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_maketrans__doc__,
- "maketrans(frm, to, /)\n"
- "--\n"
- "\n"
- "Return a translation table useable for the bytes or bytearray translate method.\n"
- "\n"
- "The returned table will be one where each byte in frm is mapped to the byte at\n"
- "the same position in to.\n"
- "\n"
- "The bytes objects frm and to must be of the same length.");
- #define BYTEARRAY_MAKETRANS_METHODDEF \
- {"maketrans", _PyCFunction_CAST(bytearray_maketrans), METH_FASTCALL|METH_STATIC, bytearray_maketrans__doc__},
- static PyObject *
- bytearray_maketrans_impl(Py_buffer *frm, Py_buffer *to);
- static PyObject *
- bytearray_maketrans(void *null, PyObject *const *args, Py_ssize_t nargs)
- {
- PyObject *return_value = NULL;
- Py_buffer frm = {NULL, NULL};
- Py_buffer to = {NULL, NULL};
- if (!_PyArg_CheckPositional("maketrans", nargs, 2, 2)) {
- goto exit;
- }
- if (PyObject_GetBuffer(args[0], &frm, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&frm, 'C')) {
- _PyArg_BadArgument("maketrans", "argument 1", "contiguous buffer", args[0]);
- goto exit;
- }
- if (PyObject_GetBuffer(args[1], &to, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&to, 'C')) {
- _PyArg_BadArgument("maketrans", "argument 2", "contiguous buffer", args[1]);
- goto exit;
- }
- return_value = bytearray_maketrans_impl(&frm, &to);
- exit:
- /* Cleanup for frm */
- if (frm.obj) {
- PyBuffer_Release(&frm);
- }
- /* Cleanup for to */
- if (to.obj) {
- PyBuffer_Release(&to);
- }
- return return_value;
- }
- PyDoc_STRVAR(bytearray_replace__doc__,
- "replace($self, old, new, count=-1, /)\n"
- "--\n"
- "\n"
- "Return a copy with all occurrences of substring old replaced by new.\n"
- "\n"
- " count\n"
- " Maximum number of occurrences to replace.\n"
- " -1 (the default value) means replace all occurrences.\n"
- "\n"
- "If the optional argument count is given, only the first count occurrences are\n"
- "replaced.");
- #define BYTEARRAY_REPLACE_METHODDEF \
- {"replace", _PyCFunction_CAST(bytearray_replace), METH_FASTCALL, bytearray_replace__doc__},
- static PyObject *
- bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old,
- Py_buffer *new, Py_ssize_t count);
- static PyObject *
- bytearray_replace(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)
- {
- PyObject *return_value = NULL;
- Py_buffer old = {NULL, NULL};
- Py_buffer new = {NULL, NULL};
- Py_ssize_t count = -1;
- if (!_PyArg_CheckPositional("replace", nargs, 2, 3)) {
- goto exit;
- }
- if (PyObject_GetBuffer(args[0], &old, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&old, 'C')) {
- _PyArg_BadArgument("replace", "argument 1", "contiguous buffer", args[0]);
- goto exit;
- }
- if (PyObject_GetBuffer(args[1], &new, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&new, 'C')) {
- _PyArg_BadArgument("replace", "argument 2", "contiguous buffer", args[1]);
- goto exit;
- }
- if (nargs < 3) {
- goto skip_optional;
- }
- {
- Py_ssize_t ival = -1;
- PyObject *iobj = _PyNumber_Index(args[2]);
- if (iobj != NULL) {
- ival = PyLong_AsSsize_t(iobj);
- Py_DECREF(iobj);
- }
- if (ival == -1 && PyErr_Occurred()) {
- goto exit;
- }
- count = ival;
- }
- skip_optional:
- return_value = bytearray_replace_impl(self, &old, &new, count);
- exit:
- /* Cleanup for old */
- if (old.obj) {
- PyBuffer_Release(&old);
- }
- /* Cleanup for new */
- if (new.obj) {
- PyBuffer_Release(&new);
- }
- return return_value;
- }
- PyDoc_STRVAR(bytearray_split__doc__,
- "split($self, /, sep=None, maxsplit=-1)\n"
- "--\n"
- "\n"
- "Return a list of the sections in the bytearray, using sep as the delimiter.\n"
- "\n"
- " sep\n"
- " The delimiter according which to split the bytearray.\n"
- " None (the default value) means split on ASCII whitespace characters\n"
- " (space, tab, return, newline, formfeed, vertical tab).\n"
- " maxsplit\n"
- " Maximum number of splits to do.\n"
- " -1 (the default value) means no limit.");
- #define BYTEARRAY_SPLIT_METHODDEF \
- {"split", _PyCFunction_CAST(bytearray_split), METH_FASTCALL|METH_KEYWORDS, bytearray_split__doc__},
- static PyObject *
- bytearray_split_impl(PyByteArrayObject *self, PyObject *sep,
- Py_ssize_t maxsplit);
- static PyObject *
- bytearray_split(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 2
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(sep), &_Py_ID(maxsplit), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"sep", "maxsplit", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "split",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[2];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
- PyObject *sep = Py_None;
- Py_ssize_t maxsplit = -1;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 2, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- if (args[0]) {
- sep = args[0];
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- {
- Py_ssize_t ival = -1;
- PyObject *iobj = _PyNumber_Index(args[1]);
- if (iobj != NULL) {
- ival = PyLong_AsSsize_t(iobj);
- Py_DECREF(iobj);
- }
- if (ival == -1 && PyErr_Occurred()) {
- goto exit;
- }
- maxsplit = ival;
- }
- skip_optional_pos:
- return_value = bytearray_split_impl(self, sep, maxsplit);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_partition__doc__,
- "partition($self, sep, /)\n"
- "--\n"
- "\n"
- "Partition the bytearray into three parts using the given separator.\n"
- "\n"
- "This will search for the separator sep in the bytearray. If the separator is\n"
- "found, returns a 3-tuple containing the part before the separator, the\n"
- "separator itself, and the part after it as new bytearray objects.\n"
- "\n"
- "If the separator is not found, returns a 3-tuple containing the copy of the\n"
- "original bytearray object and two empty bytearray objects.");
- #define BYTEARRAY_PARTITION_METHODDEF \
- {"partition", (PyCFunction)bytearray_partition, METH_O, bytearray_partition__doc__},
- PyDoc_STRVAR(bytearray_rpartition__doc__,
- "rpartition($self, sep, /)\n"
- "--\n"
- "\n"
- "Partition the bytearray into three parts using the given separator.\n"
- "\n"
- "This will search for the separator sep in the bytearray, starting at the end.\n"
- "If the separator is found, returns a 3-tuple containing the part before the\n"
- "separator, the separator itself, and the part after it as new bytearray\n"
- "objects.\n"
- "\n"
- "If the separator is not found, returns a 3-tuple containing two empty bytearray\n"
- "objects and the copy of the original bytearray object.");
- #define BYTEARRAY_RPARTITION_METHODDEF \
- {"rpartition", (PyCFunction)bytearray_rpartition, METH_O, bytearray_rpartition__doc__},
- PyDoc_STRVAR(bytearray_rsplit__doc__,
- "rsplit($self, /, sep=None, maxsplit=-1)\n"
- "--\n"
- "\n"
- "Return a list of the sections in the bytearray, using sep as the delimiter.\n"
- "\n"
- " sep\n"
- " The delimiter according which to split the bytearray.\n"
- " None (the default value) means split on ASCII whitespace characters\n"
- " (space, tab, return, newline, formfeed, vertical tab).\n"
- " maxsplit\n"
- " Maximum number of splits to do.\n"
- " -1 (the default value) means no limit.\n"
- "\n"
- "Splitting is done starting at the end of the bytearray and working to the front.");
- #define BYTEARRAY_RSPLIT_METHODDEF \
- {"rsplit", _PyCFunction_CAST(bytearray_rsplit), METH_FASTCALL|METH_KEYWORDS, bytearray_rsplit__doc__},
- static PyObject *
- bytearray_rsplit_impl(PyByteArrayObject *self, PyObject *sep,
- Py_ssize_t maxsplit);
- static PyObject *
- bytearray_rsplit(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 2
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(sep), &_Py_ID(maxsplit), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"sep", "maxsplit", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "rsplit",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[2];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
- PyObject *sep = Py_None;
- Py_ssize_t maxsplit = -1;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 2, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- if (args[0]) {
- sep = args[0];
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- {
- Py_ssize_t ival = -1;
- PyObject *iobj = _PyNumber_Index(args[1]);
- if (iobj != NULL) {
- ival = PyLong_AsSsize_t(iobj);
- Py_DECREF(iobj);
- }
- if (ival == -1 && PyErr_Occurred()) {
- goto exit;
- }
- maxsplit = ival;
- }
- skip_optional_pos:
- return_value = bytearray_rsplit_impl(self, sep, maxsplit);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_reverse__doc__,
- "reverse($self, /)\n"
- "--\n"
- "\n"
- "Reverse the order of the values in B in place.");
- #define BYTEARRAY_REVERSE_METHODDEF \
- {"reverse", (PyCFunction)bytearray_reverse, METH_NOARGS, bytearray_reverse__doc__},
- static PyObject *
- bytearray_reverse_impl(PyByteArrayObject *self);
- static PyObject *
- bytearray_reverse(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))
- {
- return bytearray_reverse_impl(self);
- }
- PyDoc_STRVAR(bytearray_insert__doc__,
- "insert($self, index, item, /)\n"
- "--\n"
- "\n"
- "Insert a single item into the bytearray before the given index.\n"
- "\n"
- " index\n"
- " The index where the value is to be inserted.\n"
- " item\n"
- " The item to be inserted.");
- #define BYTEARRAY_INSERT_METHODDEF \
- {"insert", _PyCFunction_CAST(bytearray_insert), METH_FASTCALL, bytearray_insert__doc__},
- static PyObject *
- bytearray_insert_impl(PyByteArrayObject *self, Py_ssize_t index, int item);
- static PyObject *
- bytearray_insert(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)
- {
- PyObject *return_value = NULL;
- Py_ssize_t index;
- int item;
- if (!_PyArg_CheckPositional("insert", nargs, 2, 2)) {
- goto exit;
- }
- {
- Py_ssize_t ival = -1;
- PyObject *iobj = _PyNumber_Index(args[0]);
- if (iobj != NULL) {
- ival = PyLong_AsSsize_t(iobj);
- Py_DECREF(iobj);
- }
- if (ival == -1 && PyErr_Occurred()) {
- goto exit;
- }
- index = ival;
- }
- if (!_getbytevalue(args[1], &item)) {
- goto exit;
- }
- return_value = bytearray_insert_impl(self, index, item);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_append__doc__,
- "append($self, item, /)\n"
- "--\n"
- "\n"
- "Append a single item to the end of the bytearray.\n"
- "\n"
- " item\n"
- " The item to be appended.");
- #define BYTEARRAY_APPEND_METHODDEF \
- {"append", (PyCFunction)bytearray_append, METH_O, bytearray_append__doc__},
- static PyObject *
- bytearray_append_impl(PyByteArrayObject *self, int item);
- static PyObject *
- bytearray_append(PyByteArrayObject *self, PyObject *arg)
- {
- PyObject *return_value = NULL;
- int item;
- if (!_getbytevalue(arg, &item)) {
- goto exit;
- }
- return_value = bytearray_append_impl(self, item);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_extend__doc__,
- "extend($self, iterable_of_ints, /)\n"
- "--\n"
- "\n"
- "Append all the items from the iterator or sequence to the end of the bytearray.\n"
- "\n"
- " iterable_of_ints\n"
- " The iterable of items to append.");
- #define BYTEARRAY_EXTEND_METHODDEF \
- {"extend", (PyCFunction)bytearray_extend, METH_O, bytearray_extend__doc__},
- PyDoc_STRVAR(bytearray_pop__doc__,
- "pop($self, index=-1, /)\n"
- "--\n"
- "\n"
- "Remove and return a single item from B.\n"
- "\n"
- " index\n"
- " The index from where to remove the item.\n"
- " -1 (the default value) means remove the last item.\n"
- "\n"
- "If no index argument is given, will pop the last item.");
- #define BYTEARRAY_POP_METHODDEF \
- {"pop", _PyCFunction_CAST(bytearray_pop), METH_FASTCALL, bytearray_pop__doc__},
- static PyObject *
- bytearray_pop_impl(PyByteArrayObject *self, Py_ssize_t index);
- static PyObject *
- bytearray_pop(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)
- {
- PyObject *return_value = NULL;
- Py_ssize_t index = -1;
- if (!_PyArg_CheckPositional("pop", nargs, 0, 1)) {
- goto exit;
- }
- if (nargs < 1) {
- goto skip_optional;
- }
- {
- Py_ssize_t ival = -1;
- PyObject *iobj = _PyNumber_Index(args[0]);
- if (iobj != NULL) {
- ival = PyLong_AsSsize_t(iobj);
- Py_DECREF(iobj);
- }
- if (ival == -1 && PyErr_Occurred()) {
- goto exit;
- }
- index = ival;
- }
- skip_optional:
- return_value = bytearray_pop_impl(self, index);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_remove__doc__,
- "remove($self, value, /)\n"
- "--\n"
- "\n"
- "Remove the first occurrence of a value in the bytearray.\n"
- "\n"
- " value\n"
- " The value to remove.");
- #define BYTEARRAY_REMOVE_METHODDEF \
- {"remove", (PyCFunction)bytearray_remove, METH_O, bytearray_remove__doc__},
- static PyObject *
- bytearray_remove_impl(PyByteArrayObject *self, int value);
- static PyObject *
- bytearray_remove(PyByteArrayObject *self, PyObject *arg)
- {
- PyObject *return_value = NULL;
- int value;
- if (!_getbytevalue(arg, &value)) {
- goto exit;
- }
- return_value = bytearray_remove_impl(self, value);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_strip__doc__,
- "strip($self, bytes=None, /)\n"
- "--\n"
- "\n"
- "Strip leading and trailing bytes contained in the argument.\n"
- "\n"
- "If the argument is omitted or None, strip leading and trailing ASCII whitespace.");
- #define BYTEARRAY_STRIP_METHODDEF \
- {"strip", _PyCFunction_CAST(bytearray_strip), METH_FASTCALL, bytearray_strip__doc__},
- static PyObject *
- bytearray_strip_impl(PyByteArrayObject *self, PyObject *bytes);
- static PyObject *
- bytearray_strip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)
- {
- PyObject *return_value = NULL;
- PyObject *bytes = Py_None;
- if (!_PyArg_CheckPositional("strip", nargs, 0, 1)) {
- goto exit;
- }
- if (nargs < 1) {
- goto skip_optional;
- }
- bytes = args[0];
- skip_optional:
- return_value = bytearray_strip_impl(self, bytes);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_lstrip__doc__,
- "lstrip($self, bytes=None, /)\n"
- "--\n"
- "\n"
- "Strip leading bytes contained in the argument.\n"
- "\n"
- "If the argument is omitted or None, strip leading ASCII whitespace.");
- #define BYTEARRAY_LSTRIP_METHODDEF \
- {"lstrip", _PyCFunction_CAST(bytearray_lstrip), METH_FASTCALL, bytearray_lstrip__doc__},
- static PyObject *
- bytearray_lstrip_impl(PyByteArrayObject *self, PyObject *bytes);
- static PyObject *
- bytearray_lstrip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)
- {
- PyObject *return_value = NULL;
- PyObject *bytes = Py_None;
- if (!_PyArg_CheckPositional("lstrip", nargs, 0, 1)) {
- goto exit;
- }
- if (nargs < 1) {
- goto skip_optional;
- }
- bytes = args[0];
- skip_optional:
- return_value = bytearray_lstrip_impl(self, bytes);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_rstrip__doc__,
- "rstrip($self, bytes=None, /)\n"
- "--\n"
- "\n"
- "Strip trailing bytes contained in the argument.\n"
- "\n"
- "If the argument is omitted or None, strip trailing ASCII whitespace.");
- #define BYTEARRAY_RSTRIP_METHODDEF \
- {"rstrip", _PyCFunction_CAST(bytearray_rstrip), METH_FASTCALL, bytearray_rstrip__doc__},
- static PyObject *
- bytearray_rstrip_impl(PyByteArrayObject *self, PyObject *bytes);
- static PyObject *
- bytearray_rstrip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)
- {
- PyObject *return_value = NULL;
- PyObject *bytes = Py_None;
- if (!_PyArg_CheckPositional("rstrip", nargs, 0, 1)) {
- goto exit;
- }
- if (nargs < 1) {
- goto skip_optional;
- }
- bytes = args[0];
- skip_optional:
- return_value = bytearray_rstrip_impl(self, bytes);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_decode__doc__,
- "decode($self, /, encoding=\'utf-8\', errors=\'strict\')\n"
- "--\n"
- "\n"
- "Decode the bytearray using the codec registered for encoding.\n"
- "\n"
- " encoding\n"
- " The encoding with which to decode the bytearray.\n"
- " errors\n"
- " The error handling scheme to use for the handling of decoding errors.\n"
- " The default is \'strict\' meaning that decoding errors raise a\n"
- " UnicodeDecodeError. Other possible values are \'ignore\' and \'replace\'\n"
- " as well as any other name registered with codecs.register_error that\n"
- " can handle UnicodeDecodeErrors.");
- #define BYTEARRAY_DECODE_METHODDEF \
- {"decode", _PyCFunction_CAST(bytearray_decode), METH_FASTCALL|METH_KEYWORDS, bytearray_decode__doc__},
- static PyObject *
- bytearray_decode_impl(PyByteArrayObject *self, const char *encoding,
- const char *errors);
- static PyObject *
- bytearray_decode(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 2
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(encoding), &_Py_ID(errors), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"encoding", "errors", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "decode",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[2];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
- const char *encoding = NULL;
- const char *errors = NULL;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 2, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- if (args[0]) {
- if (!PyUnicode_Check(args[0])) {
- _PyArg_BadArgument("decode", "argument 'encoding'", "str", args[0]);
- goto exit;
- }
- Py_ssize_t encoding_length;
- encoding = PyUnicode_AsUTF8AndSize(args[0], &encoding_length);
- if (encoding == NULL) {
- goto exit;
- }
- if (strlen(encoding) != (size_t)encoding_length) {
- PyErr_SetString(PyExc_ValueError, "embedded null character");
- goto exit;
- }
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- if (!PyUnicode_Check(args[1])) {
- _PyArg_BadArgument("decode", "argument 'errors'", "str", args[1]);
- goto exit;
- }
- Py_ssize_t errors_length;
- errors = PyUnicode_AsUTF8AndSize(args[1], &errors_length);
- if (errors == NULL) {
- goto exit;
- }
- if (strlen(errors) != (size_t)errors_length) {
- PyErr_SetString(PyExc_ValueError, "embedded null character");
- goto exit;
- }
- skip_optional_pos:
- return_value = bytearray_decode_impl(self, encoding, errors);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_join__doc__,
- "join($self, iterable_of_bytes, /)\n"
- "--\n"
- "\n"
- "Concatenate any number of bytes/bytearray objects.\n"
- "\n"
- "The bytearray whose method is called is inserted in between each pair.\n"
- "\n"
- "The result is returned as a new bytearray object.");
- #define BYTEARRAY_JOIN_METHODDEF \
- {"join", (PyCFunction)bytearray_join, METH_O, bytearray_join__doc__},
- PyDoc_STRVAR(bytearray_splitlines__doc__,
- "splitlines($self, /, keepends=False)\n"
- "--\n"
- "\n"
- "Return a list of the lines in the bytearray, breaking at line boundaries.\n"
- "\n"
- "Line breaks are not included in the resulting list unless keepends is given and\n"
- "true.");
- #define BYTEARRAY_SPLITLINES_METHODDEF \
- {"splitlines", _PyCFunction_CAST(bytearray_splitlines), METH_FASTCALL|METH_KEYWORDS, bytearray_splitlines__doc__},
- static PyObject *
- bytearray_splitlines_impl(PyByteArrayObject *self, int keepends);
- static PyObject *
- bytearray_splitlines(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 1
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(keepends), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"keepends", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "splitlines",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[1];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
- int keepends = 0;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 1, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- keepends = PyObject_IsTrue(args[0]);
- if (keepends < 0) {
- goto exit;
- }
- skip_optional_pos:
- return_value = bytearray_splitlines_impl(self, keepends);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_fromhex__doc__,
- "fromhex($type, string, /)\n"
- "--\n"
- "\n"
- "Create a bytearray object from a string of hexadecimal numbers.\n"
- "\n"
- "Spaces between two numbers are accepted.\n"
- "Example: bytearray.fromhex(\'B9 01EF\') -> bytearray(b\'\\\\xb9\\\\x01\\\\xef\')");
- #define BYTEARRAY_FROMHEX_METHODDEF \
- {"fromhex", (PyCFunction)bytearray_fromhex, METH_O|METH_CLASS, bytearray_fromhex__doc__},
- static PyObject *
- bytearray_fromhex_impl(PyTypeObject *type, PyObject *string);
- static PyObject *
- bytearray_fromhex(PyTypeObject *type, PyObject *arg)
- {
- PyObject *return_value = NULL;
- PyObject *string;
- if (!PyUnicode_Check(arg)) {
- _PyArg_BadArgument("fromhex", "argument", "str", arg);
- goto exit;
- }
- if (PyUnicode_READY(arg) == -1) {
- goto exit;
- }
- string = arg;
- return_value = bytearray_fromhex_impl(type, string);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_hex__doc__,
- "hex($self, /, sep=<unrepresentable>, bytes_per_sep=1)\n"
- "--\n"
- "\n"
- "Create a string of hexadecimal numbers from a bytearray object.\n"
- "\n"
- " sep\n"
- " An optional single character or byte to separate hex bytes.\n"
- " bytes_per_sep\n"
- " How many bytes between separators. Positive values count from the\n"
- " right, negative values count from the left.\n"
- "\n"
- "Example:\n"
- ">>> value = bytearray([0xb9, 0x01, 0xef])\n"
- ">>> value.hex()\n"
- "\'b901ef\'\n"
- ">>> value.hex(\':\')\n"
- "\'b9:01:ef\'\n"
- ">>> value.hex(\':\', 2)\n"
- "\'b9:01ef\'\n"
- ">>> value.hex(\':\', -2)\n"
- "\'b901:ef\'");
- #define BYTEARRAY_HEX_METHODDEF \
- {"hex", _PyCFunction_CAST(bytearray_hex), METH_FASTCALL|METH_KEYWORDS, bytearray_hex__doc__},
- static PyObject *
- bytearray_hex_impl(PyByteArrayObject *self, PyObject *sep, int bytes_per_sep);
- static PyObject *
- bytearray_hex(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 2
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(sep), &_Py_ID(bytes_per_sep), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"sep", "bytes_per_sep", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "hex",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[2];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
- PyObject *sep = NULL;
- int bytes_per_sep = 1;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 2, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- if (args[0]) {
- sep = args[0];
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- bytes_per_sep = _PyLong_AsInt(args[1]);
- if (bytes_per_sep == -1 && PyErr_Occurred()) {
- goto exit;
- }
- skip_optional_pos:
- return_value = bytearray_hex_impl(self, sep, bytes_per_sep);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_reduce__doc__,
- "__reduce__($self, /)\n"
- "--\n"
- "\n"
- "Return state information for pickling.");
- #define BYTEARRAY_REDUCE_METHODDEF \
- {"__reduce__", (PyCFunction)bytearray_reduce, METH_NOARGS, bytearray_reduce__doc__},
- static PyObject *
- bytearray_reduce_impl(PyByteArrayObject *self);
- static PyObject *
- bytearray_reduce(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))
- {
- return bytearray_reduce_impl(self);
- }
- PyDoc_STRVAR(bytearray_reduce_ex__doc__,
- "__reduce_ex__($self, proto=0, /)\n"
- "--\n"
- "\n"
- "Return state information for pickling.");
- #define BYTEARRAY_REDUCE_EX_METHODDEF \
- {"__reduce_ex__", _PyCFunction_CAST(bytearray_reduce_ex), METH_FASTCALL, bytearray_reduce_ex__doc__},
- static PyObject *
- bytearray_reduce_ex_impl(PyByteArrayObject *self, int proto);
- static PyObject *
- bytearray_reduce_ex(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)
- {
- PyObject *return_value = NULL;
- int proto = 0;
- if (!_PyArg_CheckPositional("__reduce_ex__", nargs, 0, 1)) {
- goto exit;
- }
- if (nargs < 1) {
- goto skip_optional;
- }
- proto = _PyLong_AsInt(args[0]);
- if (proto == -1 && PyErr_Occurred()) {
- goto exit;
- }
- skip_optional:
- return_value = bytearray_reduce_ex_impl(self, proto);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(bytearray_sizeof__doc__,
- "__sizeof__($self, /)\n"
- "--\n"
- "\n"
- "Returns the size of the bytearray object in memory, in bytes.");
- #define BYTEARRAY_SIZEOF_METHODDEF \
- {"__sizeof__", (PyCFunction)bytearray_sizeof, METH_NOARGS, bytearray_sizeof__doc__},
- static PyObject *
- bytearray_sizeof_impl(PyByteArrayObject *self);
- static PyObject *
- bytearray_sizeof(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))
- {
- return bytearray_sizeof_impl(self);
- }
- /*[clinic end generated code: output=022698e8b0faa272 input=a9049054013a1b77]*/
|