mirror of
https://github.com/python/cpython.git
synced 2025-12-03 16:19:41 +00:00
Issue #12037: Fix test_email for desktop Windows.
This commit is contained in:
parent
31e4d325b6
commit
740d6b6f39
2 changed files with 4 additions and 2 deletions
|
|
@ -180,8 +180,8 @@ class TestMessageAPI(TestEmailBase):
|
||||||
|
|
||||||
def test_byte_message_rfc822_only(self):
|
def test_byte_message_rfc822_only(self):
|
||||||
# Make sure new bytes header parser also passes this.
|
# Make sure new bytes header parser also passes this.
|
||||||
with openfile('msg_46.txt', 'rb') as fp:
|
with openfile('msg_46.txt') as fp:
|
||||||
msgdata = fp.read()
|
msgdata = fp.read().encode('ascii')
|
||||||
parser = email.parser.BytesHeaderParser()
|
parser = email.parser.BytesHeaderParser()
|
||||||
msg = parser.parsebytes(msgdata)
|
msg = parser.parsebytes(msgdata)
|
||||||
out = BytesIO()
|
out = BytesIO()
|
||||||
|
|
|
||||||
|
|
@ -314,6 +314,8 @@ IDLE
|
||||||
Tests
|
Tests
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #12037: Fix test_email for desktop Windows.
|
||||||
|
|
||||||
- Issue #15507: test_subprocess's test_send_signal could fail if the test
|
- Issue #15507: test_subprocess's test_send_signal could fail if the test
|
||||||
runner were run in an environment where the process inherited an ignore
|
runner were run in an environment where the process inherited an ignore
|
||||||
setting for SIGINT. Restore the SIGINT handler to the desired
|
setting for SIGINT. Restore the SIGINT handler to the desired
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue