From 740d6b6f39b169fe8c1ba2322fbab270aae731ea Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sat, 31 Aug 2013 17:12:21 -0400 Subject: Issue #12037: Fix test_email for desktop Windows. --- Lib/test/test_email/test_email.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/test/test_email/test_email.py') diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py index e11194b5b8..904c06a18c 100644 --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -180,8 +180,8 @@ class TestMessageAPI(TestEmailBase): def test_byte_message_rfc822_only(self): # Make sure new bytes header parser also passes this. - with openfile('msg_46.txt', 'rb') as fp: - msgdata = fp.read() + with openfile('msg_46.txt') as fp: + msgdata = fp.read().encode('ascii') parser = email.parser.BytesHeaderParser() msg = parser.parsebytes(msgdata) out = BytesIO() -- cgit v1.2.1