summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-13 22:49:43 (GMT)
committerGeorg Brandl <georg@python.org>2007-03-13 22:49:43 (GMT)
commit4aef7275cb993e18cdddf8ae8615d44f757fd717 (patch)
treed5b516f862e170ea3a866807f8e1b4e1947d6284 /Misc
parent7e2b6bb24f58d134239cd2641cb5a6b4dbc3c917 (diff)
downloadcpython-4aef7275cb993e18cdddf8ae8615d44f757fd717.zip
cpython-4aef7275cb993e18cdddf8ae8615d44f757fd717.tar.gz
cpython-4aef7275cb993e18cdddf8ae8615d44f757fd717.tar.bz2
Patch #1185447: binascii.b2a_qp() now correctly quotes binary characters
with ASCII value less than 32. Also, it correctly quotes dots only if they occur on a single line, as opposed to the previous behavior of quoting dots if they are the second character of any line.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d9bf14f..355a827 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -525,6 +525,11 @@ Library
Extension Modules
-----------------
+- Patch #1185447: binascii.b2a_qp() now correctly quotes binary characters
+ with ASCII value less than 32. Also, it correctly quotes dots only if
+ they occur on a single line, as opposed to the previous behavior of
+ quoting dots if they are the second character of any line.
+
- Bug #1622896: fix a rare corner case where the bz2 module raised an
error in spite of a succesful compression.