read1(size=-1)
Read and return up to size bytes, with at most one call to the underlying raw stream’s read()
(or readinto()
) method. This can be useful if you are implementing your own buffering on top of a BufferedIOBase
object.
read1(size=-1)
Read and return up to size bytes, with at most one call to the underlying raw stream’s read()
(or readinto()
) method. This can be useful if you are implementing your own buffering on top of a BufferedIOBase
object.
Please login to continue.