Commit 19c06739 authored by Ezio Melotti's avatar Ezio Melotti

Rephrase comment.

parent 896c4777
...@@ -554,10 +554,10 @@ class TestEncoders(unittest.TestCase): ...@@ -554,10 +554,10 @@ class TestEncoders(unittest.TestCase):
def test_default_cte(self): def test_default_cte(self):
eq = self.assertEqual 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') msg = MIMEText('hello world')
eq(msg['content-transfer-encoding'], '7bit') eq(msg['content-transfer-encoding'], '7bit')
# Similar, but with 8-bit data # Similar, but with 8bit data
msg = MIMEText('hello \xf8 world') msg = MIMEText('hello \xf8 world')
eq(msg['content-transfer-encoding'], '8bit') eq(msg['content-transfer-encoding'], '8bit')
# And now with a different charset # And now with a different charset
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment