summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2019-05-22 15:18:26 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-22 15:18:26 (GMT)
commitb3be4072888a4ce054993c2801802721466ea02d (patch)
treef59540b9a13da03566d2a9121ceb87ad6b1dcf88 /Misc/NEWS.d
parent933e1509ec6efa8e6ab8c8c7ce02059ce2b6d9b9 (diff)
downloadcpython-b3be4072888a4ce054993c2801802721466ea02d.zip
cpython-b3be4072888a4ce054993c2801802721466ea02d.tar.gz
cpython-b3be4072888a4ce054993c2801802721466ea02d.tar.bz2
bpo-33482: fix codecs.StreamRecoder.writelines (GH-6779)
A very simple fix. I found this while writing typeshed stubs for StreamRecoder. https://bugs.python.org/issue33482
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Documentation/2018-05-13-10-36-37.bpo-33482.jalAaQ.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2018-05-13-10-36-37.bpo-33482.jalAaQ.rst b/Misc/NEWS.d/next/Documentation/2018-05-13-10-36-37.bpo-33482.jalAaQ.rst
new file mode 100644
index 0000000..bda5be8
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2018-05-13-10-36-37.bpo-33482.jalAaQ.rst
@@ -0,0 +1 @@
+Make `codecs.StreamRecoder.writelines` take a list of bytes.