Marc-Andre Lemburg:

Changed PyUnicode_Splitlines() maxsplit argument to keepends.
The maxsplit functionality was replaced by the keepends
functionality which allows keeping the line end markers together
with the string.
This commit is contained in:
Guido van Rossum 2000-04-11 15:39:46 +00:00
parent f0b7b04ae8
commit 004d64f362

View File

@ -674,7 +674,7 @@ extern DL_IMPORT(PyObject*) PyUnicode_Split(
extern DL_IMPORT(PyObject*) PyUnicode_Splitlines(
PyObject *s, /* String to split */
int maxsplit /* Maxsplit count */
int keepends /* If true, line end markers are included */
);
/* Translate a string by applying a character mapping table to it and