summaryrefslogtreecommitdiffstats
path: root/Lib/email
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-04-22 11:53:21 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-04-22 11:53:21 (GMT)
commit19c06739c5a294538a9b233dd4de9301871d0b60 (patch)
treec47d8a76b4d408d905ce42d9f58e5312593cfc98 /Lib/email
parent896c4777c658e6132f5e9d6a34162746d790a4c6 (diff)
downloadcpython-19c06739c5a294538a9b233dd4de9301871d0b60.zip
cpython-19c06739c5a294538a9b233dd4de9301871d0b60.tar.gz
cpython-19c06739c5a294538a9b233dd4de9301871d0b60.tar.bz2
Rephrase comment.
Diffstat (limited to 'Lib/email')
-rw-r--r--Lib/email/test/test_email.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py
index d3279a0..01d2a67 100644
--- a/Lib/email/test/test_email.py
+++ b/Lib/email/test/test_email.py
@@ -554,10 +554,10 @@ class TestEncoders(unittest.TestCase):
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