mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #20699: Merge io bytes-like fixes from 3.5
This commit is contained in:
commit
c249221dfd
10 changed files with 128 additions and 67 deletions
|
@ -190,8 +190,8 @@ bufferediobase_read1(PyObject *self, PyObject *args)
|
|||
PyDoc_STRVAR(bufferediobase_write_doc,
|
||||
"Write the given buffer to the IO stream.\n"
|
||||
"\n"
|
||||
"Returns the number of bytes written, which is never less than\n"
|
||||
"len(b).\n"
|
||||
"Returns the number of bytes written, which is always the length of b\n"
|
||||
"in bytes.\n"
|
||||
"\n"
|
||||
"Raises BlockingIOError if the buffer is full and the\n"
|
||||
"underlying raw stream cannot accept more data at the moment.\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue