Home | History | Annotate | Download | only in Objects

Lines Matching defs:rsplit

5864 PyObject *rsplit(PyUnicodeObject *self,
7603 result = rsplit((PyUnicodeObject *)s, (PyUnicodeObject *)sep, maxsplit);
7611 "S.rsplit([sep [,maxsplit]]) -> list of strings\n\
7625 if (!PyArg_ParseTuple(args, "|On:rsplit", &substring, &maxcount))
7629 return rsplit(self, NULL, maxcount);
7631 return rsplit(self, (PyUnicodeObject *)substring, maxcount);
7916 {"rsplit", (PyCFunction) unicode_rsplit, METH_VARARGS, rsplit__doc__},