summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-11-10 07:37:19 (GMT)
committerGitHub <noreply@github.com>2023-11-10 07:37:19 (GMT)
commit95141aa7155afe3c98d6cbe0c8eb425a15d54b23 (patch)
tree422ab92fd55f69c76fb8ce1ccb0bf4224b2a5794 /Misc
parent4018209fff7ba1be3cc1f919f0bebc931febbf82 (diff)
downloadcpython-95141aa7155afe3c98d6cbe0c8eb425a15d54b23.zip
cpython-95141aa7155afe3c98d6cbe0c8eb425a15d54b23.tar.gz
cpython-95141aa7155afe3c98d6cbe0c8eb425a15d54b23.tar.bz2
gh-111356: io: Add missing documented objects to io.__all__ (GH-111370)
Add DEFAULT_BUFFER_SIZE, text_encoding, and IncrementalNewlineDecoder. (cherry picked from commit baeb7718f8981319c5cb1fbdd46d162ded7964ea) Co-authored-by: Nicolas Tessore <n.tessore@ucl.ac.uk>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-10-30-08-50-46.gh-issue-111356.Bc8LvA.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-10-30-08-50-46.gh-issue-111356.Bc8LvA.rst b/Misc/NEWS.d/next/Library/2023-10-30-08-50-46.gh-issue-111356.Bc8LvA.rst
new file mode 100644
index 0000000..a821b52
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-10-30-08-50-46.gh-issue-111356.Bc8LvA.rst
@@ -0,0 +1 @@
+Added :func:`io.text_encoding()`, :data:`io.DEFAULT_BUFFER_SIZE`, and :class:`io.IncrementalNewlineDecoder` to ``io.__all__``.