File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -573,14 +573,14 @@ I/O Base Classes
573573
574574 Less bytes may be returned than requested. An empty :class: `bytes ` object
575575 is returned if the stream is already at EOF. More than one read may be
576- made, and calls may be retried if specific errors are encountered, see
576+ made and calls may be retried if specific errors are encountered, see
577577 :meth: `os.read ` and :pep: `475 ` for more details. Less than size bytes
578578 being returned does not imply that EOF is imminent.
579579
580580 When reading as much as possible the default implementation will use
581581 ``raw.readall `` if available (which should implement
582582 :meth: `RawIOBase.readall `), otherwise will read in a loop until read
583- returns ``None ``, a size-zero :class: `bytes `, or a non-retryable error. For
583+ returns ``None ``, an empty :class: `bytes `, or a non-retryable error. For
584584 most streams this is to EOF, but for non-blocking streams more data may
585585 become available.
586586
You can’t perform that action at this time.
0 commit comments