@@ -306,8 +306,7 @@ I/O Base Classes
306
306
307
307
.. class :: IOBase
308
308
309
- The abstract base class for all I/O classes, acting on streams of bytes.
310
- There is no public constructor.
309
+ The abstract base class for all I/O classes.
311
310
312
311
This class provides empty abstract implementations for many methods
313
312
that derived classes can override selectively; the default
@@ -461,8 +460,7 @@ I/O Base Classes
461
460
462
461
.. class :: RawIOBase
463
462
464
- Base class for raw binary streams. It inherits :class: `IOBase `. There is no
465
- public constructor.
463
+ Base class for raw binary streams. It inherits :class: `IOBase `.
466
464
467
465
Raw binary streams typically provide low-level access to an underlying OS
468
466
device or API, and do not try to encapsulate it in high-level primitives
@@ -515,7 +513,7 @@ I/O Base Classes
515
513
.. class :: BufferedIOBase
516
514
517
515
Base class for binary streams that support some kind of buffering.
518
- It inherits :class: `IOBase `. There is no public constructor.
516
+ It inherits :class: `IOBase `.
519
517
520
518
The main difference with :class: `RawIOBase ` is that methods :meth: `read `,
521
519
:meth: `readinto ` and :meth: `write ` will try (respectively) to read as much
@@ -852,8 +850,7 @@ Text I/O
852
850
.. class :: TextIOBase
853
851
854
852
Base class for text streams. This class provides a character and line based
855
- interface to stream I/O. It inherits :class: `IOBase `. There is no public
856
- constructor.
853
+ interface to stream I/O. It inherits :class: `IOBase `.
857
854
858
855
:class: `TextIOBase ` provides or overrides these data attributes and
859
856
methods in addition to those from :class: `IOBase `:
0 commit comments