From: Alexandre Vassalotti Date: Wed, 7 May 2008 01:47:37 +0000 (+0000) Subject: Fixed docstring of _bytesio._BytesIO.writelines(). X-Git-Tag: v3.0a5~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d060891502d4502a6f0d39e0313bdfdbea955bd;p=python Fixed docstring of _bytesio._BytesIO.writelines(). --- diff --git a/Modules/_bytesio.c b/Modules/_bytesio.c index 9920aaaeb9..616bf0552b 100644 --- a/Modules/_bytesio.c +++ b/Modules/_bytesio.c @@ -543,10 +543,11 @@ bytesio_write(BytesIOObject *self, PyObject *obj) } PyDoc_STRVAR(writelines_doc, -"writelines(sequence_of_strings) -> None. Write the strings to the file.\n" +"writelines(sequence_of_strings) -> None. Write strings to the file.\n" "\n" -"Note that newlines are not added. The sequence can be any iterable object\n" -"producing strings. This is equivalent to calling write() for each string."); +"Note that newlines are not added. The sequence can be any iterable\n" +"object producing strings. This is equivalent to calling write() for\n" +"each string."); static PyObject * bytesio_writelines(BytesIOObject *self, PyObject *v)