diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-07 01:47:37 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-07 01:47:37 (GMT) |
commit | 7d060891502d4502a6f0d39e0313bdfdbea955bd (patch) | |
tree | 30f5fc0a8ac46eb744b8745cb076c282f8871bf1 /Modules/_bytesio.c | |
parent | 1bfe9dc871bb3cd6392418410805f0248b1c7d87 (diff) | |
download | cpython-7d060891502d4502a6f0d39e0313bdfdbea955bd.zip cpython-7d060891502d4502a6f0d39e0313bdfdbea955bd.tar.gz cpython-7d060891502d4502a6f0d39e0313bdfdbea955bd.tar.bz2 |
Fixed docstring of _bytesio._BytesIO.writelines().
Diffstat (limited to 'Modules/_bytesio.c')
-rw-r--r-- | Modules/_bytesio.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Modules/_bytesio.c b/Modules/_bytesio.c index 9920aaa..616bf05 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) |