summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-05-28 00:45:01 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-05-28 00:45:01 (GMT)
commitadbdcdbd9527a3c4000cd4ff0678ff60151f1f79 (patch)
tree00f76f4304feb96a32a8140efae37c5935d10bd6 /Misc
parent2c172d04bb6af565dcb1217aaba1b347c99b54ea (diff)
downloadcpython-adbdcdbd9527a3c4000cd4ff0678ff60151f1f79.zip
cpython-adbdcdbd9527a3c4000cd4ff0678ff60151f1f79.tar.gz
cpython-adbdcdbd9527a3c4000cd4ff0678ff60151f1f79.tar.bz2
#14925: email now registers a defect for missing header/body separator.
This patch also deprecates the MalformedHeaderDefect. My best guess is that this defect was rendered obsolete by a refactoring of the parser, and the corresponding defect for the new parser (which this patch introduces) was overlooked.
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 512783a..e8171ac 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,10 @@ Core and Builtins
Library
-------
+- Issue #14925: email now registers a defect when the parser decides that there
+ is a missing header/body separator line. MalformedHeaderDefect, which the
+ existing code would never actually generate, is deprecated.
+
- Issue #10365: File open dialog now works instead of crashing
even when parent window is closed. Patch by Roger Serwy.