summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-02-09 18:10:54 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-02-09 18:10:54 (GMT)
commit6cb1d67eb3bd235e1d49eeb602f15f3d40a5e228 (patch)
treeac855e8de48da9928d9754b419991157be0d9cdb /Misc
parent7d01a1eb2b636891fcac90f48290293bc2b9f3eb (diff)
parentceaa8b1d7557cf1550c16f8ae11ee9b118ef9a93 (diff)
downloadcpython-6cb1d67eb3bd235e1d49eeb602f15f3d40a5e228.zip
cpython-6cb1d67eb3bd235e1d49eeb602f15f3d40a5e228.tar.gz
cpython-6cb1d67eb3bd235e1d49eeb602f15f3d40a5e228.tar.bz2
Merge: #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 095d247..5b56d0c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -169,6 +169,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.