diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-08-09 20:40:49 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-08-09 20:40:49 (GMT) |
commit | 2539e6744b1405404c9e2c02af33381bd349106e (patch) | |
tree | c0d7b49152de3788e15df46c9560124c6208b6c9 /Misc | |
parent | ae04ba1952fe7610fb93cc127b9ac6fb3782cef4 (diff) | |
download | cpython-2539e6744b1405404c9e2c02af33381bd349106e.zip cpython-2539e6744b1405404c9e2c02af33381bd349106e.tar.gz cpython-2539e6744b1405404c9e2c02af33381bd349106e.tar.bz2 |
#21725: Add RFC 6531 (SMTPUTF8) support to smtpd.
Patch by Milan Oberkirch, developed as part of his 2014 GSOC project.
Note that this also fixes a bug in mock_socket ('getpeername' was returning a
simple string instead of the tuple required for IPvX protocols), a bug in
DebugServer with respect to handling binary data (should have been fixed when
decode_data was introduced, but wasn't found until this patch was written),
and a long-standing bug in DebugServer (it was printing an extra blank line at
the end of the displayed message text).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -115,6 +115,8 @@ Core and Builtins Library ------- +- Issue #21725: Added support for RFC 6531 (SMTPUTF8) in smtpd. + - Issue #22176: Update the ctypes module's libffi to v3.1. This release adds support for the Linux AArch64 and POWERPC ELF ABIv2 little endian architectures. |