Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bfe9dc commit 7d06089Copy full SHA for 7d06089
1 file changed
Modules/_bytesio.c
@@ -543,10 +543,11 @@ bytesio_write(BytesIOObject *self, PyObject *obj)
543
}
544
545
PyDoc_STRVAR(writelines_doc,
546
-"writelines(sequence_of_strings) -> None. Write the strings to the file.\n"
+"writelines(sequence_of_strings) -> None. Write strings to the file.\n"
547
"\n"
548
-"Note that newlines are not added. The sequence can be any iterable object\n"
549
-"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"
550
+"each string.");
551
552
static PyObject *
553
bytesio_writelines(BytesIOObject *self, PyObject *v)
0 commit comments