Home | History | Annotate | Download | only in Objects

Lines Matching defs:keepends

5827 PyObject *PyUnicode_Splitlines(PyObject *string, int keepends)
5837 PyUnicode_GET_SIZE(string), keepends);
7632 "S.splitlines(keepends=False) -> list of strings\n\
7635 Line breaks are not included in the resulting list unless keepends\n\
7641 int keepends = 0;
7643 if (!PyArg_ParseTuple(args, "|i:splitlines", &keepends))
7646 return PyUnicode_Splitlines((PyObject *)self, keepends);