mirror of
https://github.com/python/cpython.git
synced 2025-11-24 20:30:18 +00:00
#25328: add missing raise keyword in decode_data+SMTPUTF8 check.
This is a relatively benign bug, since having both be true was correctly rejected at in SMTPServer even before this patch. Patch by Xiang Zhang.
This commit is contained in:
parent
5ae56919ab
commit
1a815389cc
3 changed files with 11 additions and 2 deletions
|
|
@ -137,8 +137,8 @@ class SMTPChannel(asynchat.async_chat):
|
||||||
self.enable_SMTPUTF8 = enable_SMTPUTF8
|
self.enable_SMTPUTF8 = enable_SMTPUTF8
|
||||||
if enable_SMTPUTF8:
|
if enable_SMTPUTF8:
|
||||||
if decode_data:
|
if decode_data:
|
||||||
ValueError("decode_data and enable_SMTPUTF8 cannot be set to"
|
raise ValueError("decode_data and enable_SMTPUTF8 cannot"
|
||||||
" True at the same time")
|
" be set to True at the same time")
|
||||||
decode_data = False
|
decode_data = False
|
||||||
if decode_data is None:
|
if decode_data is None:
|
||||||
warn("The decode_data default of True will change to False in 3.6;"
|
warn("The decode_data default of True will change to False in 3.6;"
|
||||||
|
|
|
||||||
|
|
@ -313,6 +313,12 @@ class SMTPDChannelTest(unittest.TestCase):
|
||||||
DummyDispatcherBroken, BrokenDummyServer,
|
DummyDispatcherBroken, BrokenDummyServer,
|
||||||
(support.HOST, 0), ('b', 0), decode_data=True)
|
(support.HOST, 0), ('b', 0), decode_data=True)
|
||||||
|
|
||||||
|
def test_decode_data_and_enable_SMTPUTF8_raises(self):
|
||||||
|
self.assertRaises(
|
||||||
|
ValueError, smtpd.SMTPChannel,
|
||||||
|
self.server, self.channel.conn, self.channel.addr,
|
||||||
|
enable_SMTPUTF8=True, decode_data=True)
|
||||||
|
|
||||||
def test_server_accept(self):
|
def test_server_accept(self):
|
||||||
self.server.handle_accept()
|
self.server.handle_accept()
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #25328: smtpd's SMTPChannel now correctly raises a ValueError if both
|
||||||
|
decode_data and enable_SMTPUTF8 are set to true.
|
||||||
|
|
||||||
- Issue #25316: distutils raises OSError instead of DistutilsPlatformError
|
- Issue #25316: distutils raises OSError instead of DistutilsPlatformError
|
||||||
when MSVC is not installed.
|
when MSVC is not installed.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue