]> granicus.if.org Git - python/commitdiff
Fixed docstring of _bytesio._BytesIO.writelines().
authorAlexandre Vassalotti <alexandre@peadrop.com>
Wed, 7 May 2008 01:47:37 +0000 (01:47 +0000)
committerAlexandre Vassalotti <alexandre@peadrop.com>
Wed, 7 May 2008 01:47:37 +0000 (01:47 +0000)
Modules/_bytesio.c

index 9920aaaeb9cab2702bcc23a2c510a33666bbc91e..616bf0552b9dd416b77264f126c47c5ed874900f 100644 (file)
@@ -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)