diff options
author | slateny <46876382+slateny@users.noreply.github.com> | 2022-03-04 09:35:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-04 12:35:52 -0500 |
commit | cedd2473a9bebe07f3ced4f341cf58a2fef07b03 (patch) | |
tree | 94cc2d402ea3d90edcb8d52e3b47b0a5b0a5e501 /Modules/_io/textio.c | |
parent | d168c728f7114959e8fc147538ea1d24f2f5af79 (diff) | |
download | cpython-git-cedd2473a9bebe07f3ced4f341cf58a2fef07b03.tar.gz |
bpo-25415: Remove confusing sentence from IOBase docstrings (PR-31631)
Diffstat (limited to 'Modules/_io/textio.c')
-rw-r--r-- | Modules/_io/textio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/textio.c b/Modules/_io/textio.c index ca59a4ef27..d9d1c88141 100644 --- a/Modules/_io/textio.c +++ b/Modules/_io/textio.c @@ -30,7 +30,7 @@ PyDoc_STRVAR(textiobase_doc, "\n" "This class provides a character and line based interface to stream\n" "I/O. There is no readinto method because Python's character strings\n" - "are immutable. There is no public constructor.\n" + "are immutable.\n" ); static PyObject * |