2015-04-03 17:53:51 -03:00
|
|
|
/*[clinic input]
|
|
|
|
preserve
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_split__doc__,
|
|
|
|
"split($self, /, sep=None, maxsplit=-1)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return a list of the sections in the bytes, using sep as the delimiter.\n"
|
|
|
|
"\n"
|
|
|
|
" sep\n"
|
|
|
|
" The delimiter according which to split the bytes.\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 BYTES_SPLIT_METHODDEF \
|
2017-07-03 15:20:15 -03:00
|
|
|
{"split", (PyCFunction)bytes_split, METH_FASTCALL|METH_KEYWORDS, bytes_split__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-05-02 07:45:20 -03:00
|
|
|
bytes_split_impl(PyBytesObject *self, PyObject *sep, Py_ssize_t maxsplit);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-09-10 00:00:13 -03:00
|
|
|
bytes_split(PyBytesObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2016-08-14 04:52:18 -03:00
|
|
|
static const char * const _keywords[] = {"sep", "maxsplit", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"|On:split", _keywords, 0};
|
2015-04-03 17:53:51 -03:00
|
|
|
PyObject *sep = Py_None;
|
|
|
|
Py_ssize_t maxsplit = -1;
|
|
|
|
|
2017-01-16 20:29:01 -04:00
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
2016-06-09 10:16:06 -03:00
|
|
|
&sep, &maxsplit)) {
|
2015-04-03 17:53:51 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_split_impl(self, sep, maxsplit);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_partition__doc__,
|
|
|
|
"partition($self, sep, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Partition the bytes into three parts using the given separator.\n"
|
|
|
|
"\n"
|
|
|
|
"This will search for the separator sep in the bytes. If the separator is found,\n"
|
|
|
|
"returns a 3-tuple containing the part before the separator, the separator\n"
|
|
|
|
"itself, and the part after it.\n"
|
|
|
|
"\n"
|
|
|
|
"If the separator is not found, returns a 3-tuple containing the original bytes\n"
|
|
|
|
"object and two empty bytes objects.");
|
|
|
|
|
|
|
|
#define BYTES_PARTITION_METHODDEF \
|
2015-04-03 18:12:11 -03:00
|
|
|
{"partition", (PyCFunction)bytes_partition, METH_O, bytes_partition__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
bytes_partition_impl(PyBytesObject *self, Py_buffer *sep);
|
|
|
|
|
|
|
|
static PyObject *
|
2015-04-03 18:12:11 -03:00
|
|
|
bytes_partition(PyBytesObject *self, PyObject *arg)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
Py_buffer sep = {NULL, NULL};
|
|
|
|
|
2016-06-09 10:16:06 -03:00
|
|
|
if (!PyArg_Parse(arg, "y*:partition", &sep)) {
|
2015-04-03 17:53:51 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_partition_impl(self, &sep);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
/* Cleanup for sep */
|
2016-06-09 10:16:06 -03:00
|
|
|
if (sep.obj) {
|
2015-04-03 17:53:51 -03:00
|
|
|
PyBuffer_Release(&sep);
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_rpartition__doc__,
|
|
|
|
"rpartition($self, sep, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Partition the bytes into three parts using the given separator.\n"
|
|
|
|
"\n"
|
|
|
|
"This will search for the separator sep in the bytes, starting and the end. If\n"
|
|
|
|
"the separator is found, returns a 3-tuple containing the part before the\n"
|
|
|
|
"separator, the separator itself, and the part after it.\n"
|
|
|
|
"\n"
|
|
|
|
"If the separator is not found, returns a 3-tuple containing two empty bytes\n"
|
|
|
|
"objects and the original bytes object.");
|
|
|
|
|
|
|
|
#define BYTES_RPARTITION_METHODDEF \
|
2015-04-03 18:12:11 -03:00
|
|
|
{"rpartition", (PyCFunction)bytes_rpartition, METH_O, bytes_rpartition__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
bytes_rpartition_impl(PyBytesObject *self, Py_buffer *sep);
|
|
|
|
|
|
|
|
static PyObject *
|
2015-04-03 18:12:11 -03:00
|
|
|
bytes_rpartition(PyBytesObject *self, PyObject *arg)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
Py_buffer sep = {NULL, NULL};
|
|
|
|
|
2016-06-09 10:16:06 -03:00
|
|
|
if (!PyArg_Parse(arg, "y*:rpartition", &sep)) {
|
2015-04-03 17:53:51 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_rpartition_impl(self, &sep);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
/* Cleanup for sep */
|
2016-06-09 10:16:06 -03:00
|
|
|
if (sep.obj) {
|
2015-04-03 17:53:51 -03:00
|
|
|
PyBuffer_Release(&sep);
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_rsplit__doc__,
|
|
|
|
"rsplit($self, /, sep=None, maxsplit=-1)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return a list of the sections in the bytes, using sep as the delimiter.\n"
|
|
|
|
"\n"
|
|
|
|
" sep\n"
|
|
|
|
" The delimiter according which to split the bytes.\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 bytes and working to the front.");
|
|
|
|
|
|
|
|
#define BYTES_RSPLIT_METHODDEF \
|
2017-07-03 15:20:15 -03:00
|
|
|
{"rsplit", (PyCFunction)bytes_rsplit, METH_FASTCALL|METH_KEYWORDS, bytes_rsplit__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-05-02 07:45:20 -03:00
|
|
|
bytes_rsplit_impl(PyBytesObject *self, PyObject *sep, Py_ssize_t maxsplit);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-09-10 00:00:13 -03:00
|
|
|
bytes_rsplit(PyBytesObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2016-08-14 04:52:18 -03:00
|
|
|
static const char * const _keywords[] = {"sep", "maxsplit", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"|On:rsplit", _keywords, 0};
|
2015-04-03 17:53:51 -03:00
|
|
|
PyObject *sep = Py_None;
|
|
|
|
Py_ssize_t maxsplit = -1;
|
|
|
|
|
2017-01-16 20:29:01 -04:00
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
2016-06-09 10:16:06 -03:00
|
|
|
&sep, &maxsplit)) {
|
2015-04-03 17:53:51 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_rsplit_impl(self, sep, maxsplit);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_join__doc__,
|
|
|
|
"join($self, iterable_of_bytes, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Concatenate any number of bytes objects.\n"
|
|
|
|
"\n"
|
|
|
|
"The bytes whose method is called is inserted in between each pair.\n"
|
|
|
|
"\n"
|
|
|
|
"The result is returned as a new bytes object.\n"
|
|
|
|
"\n"
|
|
|
|
"Example: b\'.\'.join([b\'ab\', b\'pq\', b\'rs\']) -> b\'ab.pq.rs\'.");
|
|
|
|
|
|
|
|
#define BYTES_JOIN_METHODDEF \
|
|
|
|
{"join", (PyCFunction)bytes_join, METH_O, bytes_join__doc__},
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_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 BYTES_STRIP_METHODDEF \
|
2017-01-16 21:21:47 -04:00
|
|
|
{"strip", (PyCFunction)bytes_strip, METH_FASTCALL, bytes_strip__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
bytes_strip_impl(PyBytesObject *self, PyObject *bytes);
|
|
|
|
|
|
|
|
static PyObject *
|
2017-07-03 15:20:15 -03:00
|
|
|
bytes_strip(PyBytesObject *self, PyObject **args, Py_ssize_t nargs)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
PyObject *bytes = Py_None;
|
|
|
|
|
2017-06-10 01:51:48 -03:00
|
|
|
if (!_PyArg_UnpackStack(args, nargs, "strip",
|
|
|
|
0, 1,
|
|
|
|
&bytes)) {
|
2017-01-16 21:21:47 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_strip_impl(self, bytes);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_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 BYTES_LSTRIP_METHODDEF \
|
2017-01-16 21:21:47 -04:00
|
|
|
{"lstrip", (PyCFunction)bytes_lstrip, METH_FASTCALL, bytes_lstrip__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
bytes_lstrip_impl(PyBytesObject *self, PyObject *bytes);
|
|
|
|
|
|
|
|
static PyObject *
|
2017-07-03 15:20:15 -03:00
|
|
|
bytes_lstrip(PyBytesObject *self, PyObject **args, Py_ssize_t nargs)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
PyObject *bytes = Py_None;
|
|
|
|
|
2017-06-10 01:51:48 -03:00
|
|
|
if (!_PyArg_UnpackStack(args, nargs, "lstrip",
|
|
|
|
0, 1,
|
|
|
|
&bytes)) {
|
2017-01-16 21:21:47 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_lstrip_impl(self, bytes);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_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 BYTES_RSTRIP_METHODDEF \
|
2017-01-16 21:21:47 -04:00
|
|
|
{"rstrip", (PyCFunction)bytes_rstrip, METH_FASTCALL, bytes_rstrip__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
bytes_rstrip_impl(PyBytesObject *self, PyObject *bytes);
|
|
|
|
|
|
|
|
static PyObject *
|
2017-07-03 15:20:15 -03:00
|
|
|
bytes_rstrip(PyBytesObject *self, PyObject **args, Py_ssize_t nargs)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
PyObject *bytes = Py_None;
|
|
|
|
|
2017-06-10 01:51:48 -03:00
|
|
|
if (!_PyArg_UnpackStack(args, nargs, "rstrip",
|
|
|
|
0, 1,
|
|
|
|
&bytes)) {
|
2017-01-16 21:21:47 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_rstrip_impl(self, bytes);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_translate__doc__,
|
2016-08-27 05:35:02 -03:00
|
|
|
"translate($self, table, /, delete=b\'\')\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
2015-04-03 17:53:51 -03:00
|
|
|
"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"
|
2016-08-27 05:35:02 -03:00
|
|
|
"All characters occurring in the optional argument delete are removed.\n"
|
2015-04-03 17:53:51 -03:00
|
|
|
"The remaining characters are mapped through the given translation table.");
|
|
|
|
|
|
|
|
#define BYTES_TRANSLATE_METHODDEF \
|
2017-07-03 15:20:15 -03:00
|
|
|
{"translate", (PyCFunction)bytes_translate, METH_FASTCALL|METH_KEYWORDS, bytes_translate__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-08-27 05:35:02 -03:00
|
|
|
bytes_translate_impl(PyBytesObject *self, PyObject *table,
|
2015-04-14 19:07:59 -03:00
|
|
|
PyObject *deletechars);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-09-10 00:00:13 -03:00
|
|
|
bytes_translate(PyBytesObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2016-08-27 05:35:02 -03:00
|
|
|
static const char * const _keywords[] = {"", "delete", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"O|O:translate", _keywords, 0};
|
2015-04-03 17:53:51 -03:00
|
|
|
PyObject *table;
|
|
|
|
PyObject *deletechars = NULL;
|
|
|
|
|
2017-01-16 20:29:01 -04:00
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
2016-08-27 05:35:02 -03:00
|
|
|
&table, &deletechars)) {
|
|
|
|
goto exit;
|
2015-04-03 17:53:51 -03:00
|
|
|
}
|
2016-08-27 05:35:02 -03:00
|
|
|
return_value = bytes_translate_impl(self, table, deletechars);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_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 BYTES_MAKETRANS_METHODDEF \
|
2017-01-16 20:35:17 -04:00
|
|
|
{"maketrans", (PyCFunction)bytes_maketrans, METH_FASTCALL|METH_STATIC, bytes_maketrans__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
bytes_maketrans_impl(Py_buffer *frm, Py_buffer *to);
|
|
|
|
|
|
|
|
static PyObject *
|
2017-07-03 15:20:15 -03:00
|
|
|
bytes_maketrans(void *null, PyObject **args, Py_ssize_t nargs)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
Py_buffer frm = {NULL, NULL};
|
|
|
|
Py_buffer to = {NULL, NULL};
|
|
|
|
|
2017-06-10 01:51:48 -03:00
|
|
|
if (!_PyArg_ParseStack(args, nargs, "y*y*:maketrans",
|
|
|
|
&frm, &to)) {
|
2017-01-16 20:35:17 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_maketrans_impl(&frm, &to);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
/* Cleanup for frm */
|
2016-06-09 10:16:06 -03:00
|
|
|
if (frm.obj) {
|
2015-04-03 17:53:51 -03:00
|
|
|
PyBuffer_Release(&frm);
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
/* Cleanup for to */
|
2016-06-09 10:16:06 -03:00
|
|
|
if (to.obj) {
|
2015-04-03 17:53:51 -03:00
|
|
|
PyBuffer_Release(&to);
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_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 BYTES_REPLACE_METHODDEF \
|
2017-01-16 20:35:17 -04:00
|
|
|
{"replace", (PyCFunction)bytes_replace, METH_FASTCALL, bytes_replace__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-05-02 07:45:20 -03:00
|
|
|
bytes_replace_impl(PyBytesObject *self, Py_buffer *old, Py_buffer *new,
|
2015-04-14 19:07:59 -03:00
|
|
|
Py_ssize_t count);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2017-07-03 15:20:15 -03:00
|
|
|
bytes_replace(PyBytesObject *self, PyObject **args, Py_ssize_t nargs)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
Py_buffer old = {NULL, NULL};
|
|
|
|
Py_buffer new = {NULL, NULL};
|
|
|
|
Py_ssize_t count = -1;
|
|
|
|
|
2017-06-10 01:51:48 -03:00
|
|
|
if (!_PyArg_ParseStack(args, nargs, "y*y*|n:replace",
|
|
|
|
&old, &new, &count)) {
|
2017-01-16 20:35:17 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_replace_impl(self, &old, &new, count);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
/* Cleanup for old */
|
2016-06-09 10:16:06 -03:00
|
|
|
if (old.obj) {
|
2015-04-03 17:53:51 -03:00
|
|
|
PyBuffer_Release(&old);
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
/* Cleanup for new */
|
2016-06-09 10:16:06 -03:00
|
|
|
if (new.obj) {
|
2015-04-03 17:53:51 -03:00
|
|
|
PyBuffer_Release(&new);
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_decode__doc__,
|
|
|
|
"decode($self, /, encoding=\'utf-8\', errors=\'strict\')\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Decode the bytes using the codec registered for encoding.\n"
|
|
|
|
"\n"
|
|
|
|
" encoding\n"
|
|
|
|
" The encoding with which to decode the bytes.\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 BYTES_DECODE_METHODDEF \
|
2017-07-03 15:20:15 -03:00
|
|
|
{"decode", (PyCFunction)bytes_decode, METH_FASTCALL|METH_KEYWORDS, bytes_decode__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-05-02 07:45:20 -03:00
|
|
|
bytes_decode_impl(PyBytesObject *self, const char *encoding,
|
2015-04-14 19:07:59 -03:00
|
|
|
const char *errors);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-09-10 00:00:13 -03:00
|
|
|
bytes_decode(PyBytesObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2016-08-14 04:52:18 -03:00
|
|
|
static const char * const _keywords[] = {"encoding", "errors", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"|ss:decode", _keywords, 0};
|
2015-04-03 17:53:51 -03:00
|
|
|
const char *encoding = NULL;
|
|
|
|
const char *errors = NULL;
|
|
|
|
|
2017-01-16 20:29:01 -04:00
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
2016-06-09 10:16:06 -03:00
|
|
|
&encoding, &errors)) {
|
2015-04-03 17:53:51 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_decode_impl(self, encoding, errors);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_splitlines__doc__,
|
|
|
|
"splitlines($self, /, keepends=False)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return a list of the lines in the bytes, breaking at line boundaries.\n"
|
|
|
|
"\n"
|
|
|
|
"Line breaks are not included in the resulting list unless keepends is given and\n"
|
|
|
|
"true.");
|
|
|
|
|
|
|
|
#define BYTES_SPLITLINES_METHODDEF \
|
2017-07-03 15:20:15 -03:00
|
|
|
{"splitlines", (PyCFunction)bytes_splitlines, METH_FASTCALL|METH_KEYWORDS, bytes_splitlines__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-05-02 07:45:20 -03:00
|
|
|
bytes_splitlines_impl(PyBytesObject *self, int keepends);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-09-10 00:00:13 -03:00
|
|
|
bytes_splitlines(PyBytesObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2016-08-14 04:52:18 -03:00
|
|
|
static const char * const _keywords[] = {"keepends", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"|i:splitlines", _keywords, 0};
|
2015-04-03 17:53:51 -03:00
|
|
|
int keepends = 0;
|
|
|
|
|
2017-01-16 20:29:01 -04:00
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
2016-06-09 10:16:06 -03:00
|
|
|
&keepends)) {
|
2015-04-03 17:53:51 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_splitlines_impl(self, keepends);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(bytes_fromhex__doc__,
|
|
|
|
"fromhex($type, string, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Create a bytes object from a string of hexadecimal numbers.\n"
|
|
|
|
"\n"
|
|
|
|
"Spaces between two numbers are accepted.\n"
|
|
|
|
"Example: bytes.fromhex(\'B9 01EF\') -> b\'\\\\xb9\\\\x01\\\\xef\'.");
|
|
|
|
|
|
|
|
#define BYTES_FROMHEX_METHODDEF \
|
2015-04-03 18:12:11 -03:00
|
|
|
{"fromhex", (PyCFunction)bytes_fromhex, METH_O|METH_CLASS, bytes_fromhex__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
bytes_fromhex_impl(PyTypeObject *type, PyObject *string);
|
|
|
|
|
|
|
|
static PyObject *
|
2015-04-03 18:12:11 -03:00
|
|
|
bytes_fromhex(PyTypeObject *type, PyObject *arg)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
PyObject *string;
|
|
|
|
|
2016-06-09 10:16:06 -03:00
|
|
|
if (!PyArg_Parse(arg, "U:fromhex", &string)) {
|
2015-04-03 17:53:51 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = bytes_fromhex_impl(type, string);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
2017-07-03 15:20:15 -03:00
|
|
|
/*[clinic end generated code: output=9e3374bd7d04c163 input=a9049054013a1b77]*/
|