mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-25415: Remove confusing sentence from IOBase docstrings (PR-31631)
This commit is contained in:
parent
d168c728f7
commit
cedd2473a9
4 changed files with 8 additions and 13 deletions
|
@ -326,8 +326,7 @@ except AttributeError:
|
|||
|
||||
class IOBase(metaclass=abc.ABCMeta):
|
||||
|
||||
"""The abstract base class for all I/O classes, acting on streams of
|
||||
bytes. There is no public constructor.
|
||||
"""The abstract base class for all I/O classes.
|
||||
|
||||
This class provides dummy implementations for many methods that
|
||||
derived classes can override selectively; the default implementations
|
||||
|
@ -1833,7 +1832,7 @@ class TextIOBase(IOBase):
|
|||
"""Base class for text I/O.
|
||||
|
||||
This class provides a character and line based interface to stream
|
||||
I/O. There is no public constructor.
|
||||
I/O.
|
||||
"""
|
||||
|
||||
def read(self, size=-1):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue