From 2bae4face24ac270520ca88f763886d1dca5a705 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Sat, 13 Oct 2001 15:57:55 +0000 Subject: [PATCH] Remove extra "]" in splitlines() docstring. Reported by Neal Norwitz. --- Objects/stringobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 8fab6a9e251..aea31aca6b1 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -2538,7 +2538,7 @@ string_istitle(PyStringObject *self, PyObject *uncased) static char splitlines__doc__[] = -"S.splitlines([keepends]]) -> list of strings\n\ +"S.splitlines([keepends]) -> list of strings\n\ \n\ Return a list of the lines in S, breaking at line boundaries.\n\ Line breaks are not included in the resulting list unless keepends\n\