diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-05-28 00:45:01 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-05-28 00:45:01 (GMT) |
commit | adbdcdbd9527a3c4000cd4ff0678ff60151f1f79 (patch) | |
tree | 00f76f4304feb96a32a8140efae37c5935d10bd6 /Misc/NEWS | |
parent | 2c172d04bb6af565dcb1217aaba1b347c99b54ea (diff) | |
download | cpython-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/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |