summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-06-09 15:05:57 -0400
committerR David Murray <rdmurray@bitdance.com>2011-06-09 15:05:57 -0400
commit0f663d07e669c39ce9a7ddfa71ed1293379a358e (patch)
tree10a53c305cd4812929a1519ae61e7aaa12798ff7 /Misc
parent8168d10ea683d939ae52a1ed3d7c697c92bfae3d (diff)
downloadcpython-git-0f663d07e669c39ce9a7ddfa71ed1293379a358e.tar.gz
#12283: Fixed regression in smtplib quoting of leading dots in DATA.
I unfortunately introduced the regression when I refactored the code, and there were no tests of quoting so it wasn't caught. Now there is one.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c5d2cec19a..dab5355edd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,8 @@ Core and Builtins
Library
-------
+- Issue #12283: Fixed regression in smtplib quoting of leading dots in DATA.
+
- Issue #12168: SysLogHandler now allows NUL termination to be controlled using
a new 'append_nul' attribute on the handler.