summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-11-16 17:08:45 (GMT)
committerGeorg Brandl <georg@python.org>2006-11-16 17:08:45 (GMT)
commit25aabf4cbb7ff8d1a38f8ef4602a409c00474a30 (patch)
tree507c752da3d870c6e4effd4cbae4f9df9ec287da /Misc
parent540821183b0a6105d5cf262db837332b14e0e259 (diff)
downloadcpython-25aabf4cbb7ff8d1a38f8ef4602a409c00474a30.zip
cpython-25aabf4cbb7ff8d1a38f8ef4602a409c00474a30.tar.gz
cpython-25aabf4cbb7ff8d1a38f8ef4602a409c00474a30.tar.bz2
Bug #1588217: don't parse "= " as a soft line break in binascii's
a2b_qp() function, instead leave it in the string as quopri.decode() does.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 32cdb1f..8c93519 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -219,6 +219,10 @@ Library
Extension Modules
-----------------
+- Bug #1588217: don't parse "= " as a soft line break in binascii's
+ a2b_qp() function, instead leave it in the string as quopri.decode()
+ does.
+
- Bug #1567666: Emulate GetFileAttributesExA for Win95.
- Patch #1576166: Support os.utime for directories on Windows NT+.