8000 Merged revisions 80357 via svnmerge from · python/cpython@c303c12 · GitHub
[go: up one dir, main page]

Skip to content

Commit c303c12

Browse files
committed
Merged revisions 80357 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80357 | ezio.melotti | 2010-04-22 14:53:21 +0300 (Thu, 22 Apr 2010) | 1 line Rephrase comment. ........
1 parent 5e001f6 commit c303c12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/email/test/test_email.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,10 +520,10 @@ def test_encode_empty_payload(self):
520520

521521
def test_default_cte(self):
522522
eq = self.assertEqual
523-
# With no explicit _charset its us-ascii, and all are 7-bit
523+
# 7bit data and the default us-ascii _charset
524524
msg = MIMEText('hello world')
525525
eq(msg['content-transfer-encoding'], '7bit')
526-
# Similar, but with 8-bit data
526+
# Similar, but with 8bit data
527527
msg = MIMEText('hello \xf8 world')
528528
eq(msg['content-transfer-encoding'], '8bit')
529529
# And now with a different charset

0 commit comments

Comments
 (0)
0