Lines Matching refs:sep
876 "split($self, /, sep=None, maxsplit=-1)\n"
879 "Return a list of the substrings in the string, using sep as the separator string.\n"
881 " sep\n"
899 unicode_split_impl(PyObject *self, PyObject *sep, Py_ssize_t maxsplit);
905 static const char * const _keywords[] = {"sep", "maxsplit", NULL};
909 PyObject *sep = Py_None;
920 sep = args[0];
938 return_value = unicode_split_impl(self, sep, maxsplit);
945 "partition($self, sep, /)\n"
961 "rpartition($self, sep, /)\n"
977 "rsplit($self, /, sep=None, maxsplit=-1)\n"
980 "Return a list of the substrings in the string, using sep as the separator string.\n"
982 " sep\n"
998 unicode_rsplit_impl(PyObject *self, PyObject *sep, Py_ssize_t maxsplit);
1004 static const char * const _keywords[] = {"sep", "maxsplit", NULL};
1008 PyObject *sep = Py_None;
1019 sep = args[0];
1037 return_value = unicode_rsplit_impl(self, sep, maxsplit);