Home | History | Annotate | Download | only in clinic

Lines Matching refs:maxsplit

170 "split($self, /, sep=None, maxsplit=-1)\n"
179 " maxsplit\n"
188 Py_ssize_t maxsplit);
194 static const char * const _keywords[] = {"sep", "maxsplit", NULL};
197 Py_ssize_t maxsplit = -1;
200 &sep, &maxsplit)) {
203 return_value = bytearray_split_impl(self, sep, maxsplit);
242 "rsplit($self, /, sep=None, maxsplit=-1)\n"
251 " maxsplit\n"
262 Py_ssize_t maxsplit);
268 static const char * const _keywords[] = {"sep", "maxsplit", NULL};
271 Py_ssize_t maxsplit = -1;
274 &sep, &maxsplit)) {
277 return_value = bytearray_rsplit_impl(self, sep, maxsplit);