summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-02-09 18:02:58 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-02-09 18:02:58 (GMT)
commitceaa8b1d7557cf1550c16f8ae11ee9b118ef9a93 (patch)
tree0d40360708d62f6941b0d2865c7eecdaf1d7a12b /Misc
parentd489c7a0a3936cd4bbb746e6c3eac36bff38d74b (diff)
downloadcpython-ceaa8b1d7557cf1550c16f8ae11ee9b118ef9a93.zip
cpython-ceaa8b1d7557cf1550c16f8ae11ee9b118ef9a93.tar.gz
cpython-ceaa8b1d7557cf1550c16f8ae11ee9b118ef9a93.tar.bz2
#16564: Fix regression in use of encoders.encode_noop with binary data.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 26a22f0..dc550b4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -215,6 +215,9 @@ Core and Builtins
Library
-------
+- Issue #16564: Fixed regression relative to Python2 in the operation of
+ email.encoders.encode_noop when used with binary data.
+
- Issue #10355: In SpooledTemporaryFile class mode, name, encoding and
newlines properties now work for unrolled files. Obsoleted and never
working on Python 3 xreadline method now removed.