mirror of
https://github.com/python/cpython.git
synced 2025-09-28 11:15:17 +00:00
FileIO.readinto() isn't going anywhere
This commit is contained in:
parent
5ac89cc885
commit
9a8082f107
2 changed files with 1 additions and 4 deletions
|
@ -438,9 +438,6 @@ Raw File I/O
|
||||||
the number actually written. Only one system call is made, so it
|
the number actually written. Only one system call is made, so it
|
||||||
is possible that only some of the data is written.
|
is possible that only some of the data is written.
|
||||||
|
|
||||||
Note that the inherited ``readinto()`` method should not be used on
|
|
||||||
:class:`FileIO` objects.
|
|
||||||
|
|
||||||
|
|
||||||
Buffered Streams
|
Buffered Streams
|
||||||
----------------
|
----------------
|
||||||
|
|
|
@ -887,7 +887,7 @@ PyDoc_STRVAR(tell_doc,
|
||||||
"tell() -> int. Current file position");
|
"tell() -> int. Current file position");
|
||||||
|
|
||||||
PyDoc_STRVAR(readinto_doc,
|
PyDoc_STRVAR(readinto_doc,
|
||||||
"readinto() -> Undocumented. Don't use this; it may go away.");
|
"readinto() -> Same as RawIOBase.readinto().");
|
||||||
|
|
||||||
PyDoc_STRVAR(close_doc,
|
PyDoc_STRVAR(close_doc,
|
||||||
"close() -> None. Close the file.\n"
|
"close() -> None. Close the file.\n"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue