diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index 815ddd30c7c..1f257c7a687 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -516,10 +516,10 @@ def test_encode_empty_payload(self): def test_default_cte(self): eq = self.assertEqual - # With no explicit _charset its us-ascii, and all are 7-bit + # 7bit data and the default us-ascii _charset msg = MIMEText('hello world') eq(msg['content-transfer-encoding'], '7bit') - # Similar, but with 8-bit data + # Similar, but with 8bit data msg = MIMEText('hello \xf8 world') eq(msg['content-transfer-encoding'], '8bit') # And now with a different charset