Lines Matching defs:sep
369 "split($self, /, sep=None, maxsplit=-1)\n"
372 "Return a list of the sections in the bytearray, using sep as the delimiter.\n"
374 " sep\n"
386 bytearray_split_impl(PyByteArrayObject *self, PyObject *sep,
393 static const char * const _keywords[] = {"sep", "maxsplit", NULL};
397 PyObject *sep = Py_None;
408 sep = args[0];
426 return_value = bytearray_split_impl(self, sep, maxsplit);
433 "partition($self, sep, /)\n"
438 "This will search for the separator sep in the bytearray. If the separator is\n"
449 "rpartition($self, sep, /)\n"
454 "This will search for the separator sep in the bytearray, starting at the end.\n"
466 "rsplit($self, /, sep=None, maxsplit=-1)\n"
469 "Return a list of the sections in the bytearray, using sep as the delimiter.\n"
471 " sep\n"
485 bytearray_rsplit_impl(PyByteArrayObject *self, PyObject *sep,
492 static const char * const _keywords[] = {"sep", "maxsplit", NULL};
496 PyObject *sep = Py_None;
507 sep = args[0];
525 return_value = bytearray_rsplit_impl(self, sep, maxsplit);
990 "hex($self, /, sep=<unrepresentable>, bytes_per_sep=1)\n"
995 " sep\n"
1016 bytearray_hex_impl(PyByteArrayObject *self, PyObject *sep, int bytes_per_sep);
1022 static const char * const _keywords[] = {"sep", "bytes_per_sep", NULL};
1026 PyObject *sep = NULL;
1037 sep = args[0];
1047 return_value = bytearray_hex_impl(self, sep, bytes_per_sep);