Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
19c06739
Commit
19c06739
authored
Apr 22, 2010
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rephrase comment.
parent
896c4777
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Lib/email/test/test_email.py
Lib/email/test/test_email.py
+2
-2
No files found.
Lib/email/test/test_email.py
View file @
19c06739
...
...
@@ -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-bi
t
#
7bit data and the default us-ascii _charse
t
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment