Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e08b583

Browse files
committed
merge 3.3
2 parents 6489d0b + 3b08a29 commit e08b583

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Modules/posixmodule.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7346,7 +7346,7 @@ posix_lseek(PyObject *self, PyObject *args)
73467346

73477347

73487348
PyDoc_STRVAR(posix_read__doc__,
7349-
"read(fd, buffersize) -> string\n\n\
7349+
"read(fd, buffersize) -> bytes\n\n\
73507350
Read a file descriptor.");
73517351

73527352
static PyObject *
@@ -7516,8 +7516,8 @@ posix_pread(PyObject *self, PyObject *args)
75167516
#endif
75177517

75187518
PyDoc_STRVAR(posix_write__doc__,
7519-
"write(fd, string) -> byteswritten\n\n\
7520-
Write a string to a file descriptor.");
7519+
"write(fd, data) -> byteswritten\n\n\
7520+
Write bytes to a file descriptor.");
75217521

75227522
static PyObject *
75237523
posix_write(PyObject *self, PyObject *args)

0 commit comments

Comments
 (0)