Skip to content

Commit bdce188

Browse files
miss-islingtonslateny
andauthoredMar 4, 2022
bpo-25415: Remove confusing sentence from IOBase docstrings (PR-31631)
(cherry picked from commit cedd247) Co-authored-by: slateny <[email protected]>
1 parent 7b5b429 commit bdce188

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed
 

‎Doc/library/io.rst

+4-7
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,7 @@ I/O Base Classes
306306

307307
.. class:: IOBase
308308

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.
311310

312311
This class provides empty abstract implementations for many methods
313312
that derived classes can override selectively; the default
@@ -461,8 +460,7 @@ I/O Base Classes
461460

462461
.. class:: RawIOBase
463462

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`.
466464

467465
Raw binary streams typically provide low-level access to an underlying OS
468466
device or API, and do not try to encapsulate it in high-level primitives
@@ -515,7 +513,7 @@ I/O Base Classes
515513
.. class:: BufferedIOBase
516514

517515
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`.
519517

520518
The main difference with :class:`RawIOBase` is that methods :meth:`read`,
521519
:meth:`readinto` and :meth:`write` will try (respectively) to read as much
@@ -852,8 +850,7 @@ Text I/O
852850
.. class:: TextIOBase
853851

854852
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`.
857854

858855
:class:`TextIOBase` provides or overrides these data attributes and
859856
methods in addition to those from :class:`IOBase`:

‎Lib/_pyio.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,7 @@ class UnsupportedOperation(OSError, ValueError):
338338

339339
class IOBase(metaclass=abc.ABCMeta):
340340

341-
"""The abstract base class for all I/O classes, acting on streams of
342-
bytes. There is no public constructor.
341+
"""The abstract base class for all I/O classes.
343342
344343
This class provides dummy implementations for many methods that
345344
derived classes can override selectively; the default implementations
@@ -1845,7 +1844,7 @@ class TextIOBase(IOBase):
18451844
"""Base class for text I/O.
18461845
18471846
This class provides a character and line based interface to stream
1848-
I/O. There is no public constructor.
1847+
I/O.
18491848
"""
18501849

18511850
def read(self, size=-1):

‎Modules/_io/iobase.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ typedef struct {
3434
} iobase;
3535

3636
PyDoc_STRVAR(iobase_doc,
37-
"The abstract base class for all I/O classes, acting on streams of\n"
38-
"bytes. There is no public constructor.\n"
37+
"The abstract base class for all I/O classes.\n"
3938
"\n"
4039
"This class provides dummy implementations for many methods that\n"
4140
"derived classes can override selectively; the default implementations\n"

‎Modules/_io/textio.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ PyDoc_STRVAR(textiobase_doc,
5050
"\n"
5151
"This class provides a character and line based interface to stream\n"
5252
"I/O. There is no readinto method because Python's character strings\n"
53-
"are immutable. There is no public constructor.\n"
53+
"are immutable.\n"
5454
);
5555

5656
static PyObject *

0 commit comments

Comments
 (0)
Please sign in to comment.