Home | History | Annotate | Download | only in Objects

Lines Matching defs:keepends

5820 PyObject *PyUnicode_Splitlines(PyObject *string, int keepends)

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