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
e58df829
Commit
e58df829
authored
Feb 08, 2006
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Port relevant patches for SF 1409455 to the trunk for email 3.0/Python 2.5.
Will port to Python 2.4.
parent
a871ef2b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
8 deletions
+20
-8
Lib/email/Charset.py
Lib/email/Charset.py
+2
-2
Lib/email/Generator.py
Lib/email/Generator.py
+1
-4
Lib/email/Message.py
Lib/email/Message.py
+3
-0
Lib/email/test/test_email.py
Lib/email/test/test_email.py
+2
-1
Lib/email/test/test_email_codecs.py
Lib/email/test/test_email_codecs.py
+12
-1
No files found.
Lib/email/Charset.py
View file @
e58df829
# Copyright (C) 2001-200
4
Python Software Foundation
# Copyright (C) 2001-200
6
Python Software Foundation
# Author: Ben Gertzfield, Barry Warsaw
# Contact: email-sig@python.org
...
...
@@ -206,7 +206,7 @@ class Charset:
self
.
input_codec
=
CODEC_MAP
.
get
(
self
.
input_charset
,
self
.
input_charset
)
self
.
output_codec
=
CODEC_MAP
.
get
(
self
.
output_charset
,
self
.
output_charset
)
self
.
output_charset
)
def
__str__
(
self
):
return
self
.
input_charset
.
lower
()
...
...
Lib/email/Generator.py
View file @
e58df829
# Copyright (C) 2001-200
4
Python Software Foundation
# Copyright (C) 2001-200
6
Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
...
...
@@ -175,9 +175,6 @@ class Generator:
payload
=
msg
.
get_payload
()
if
payload
is
None
:
return
cset
=
msg
.
get_charset
()
if
cset
is
not
None
:
payload
=
cset
.
body_encode
(
payload
)
if
not
isinstance
(
payload
,
basestring
):
raise
TypeError
(
'string payload expected: %s'
%
type
(
payload
))
if
self
.
_mangle_from_
:
...
...
Lib/email/Message.py
View file @
e58df829
...
...
@@ -250,11 +250,14 @@ class Message:
charset=charset.get_output_charset())
else:
self.set_param('charset', charset.get_output_charset())
if str(charset) <> charset.get_output_charset():
self._payload = charset.body_encode(self._payload)
if not self.has_key('Content-Transfer-Encoding'):
cte = charset.get_body_encoding()
try:
cte(self)
except TypeError:
self._payload = charset.body_encode(self._payload)
self.add_header('Content-Transfer-Encoding', cte)
def get_charset(self):
...
...
Lib/email/test/test_email.py
View file @
e58df829
...
...
@@ -2221,7 +2221,8 @@ class TestMiscellaneous(TestEmailBase):
charset
=
Charset
(
charsets
[
0
])
eq
(
charset
.
get_body_encoding
(),
'base64'
)
msg
.
set_payload
(
'hello world'
,
charset
=
charset
)
eq
(
msg
.
get_payload
(),
'hello world'
)
eq
(
msg
.
get_payload
(),
'aGVsbG8gd29ybGQ=
\
n
'
)
eq
(
msg
.
get_payload
(
decode
=
True
),
'hello world'
)
eq
(
msg
[
'content-transfer-encoding'
],
'base64'
)
# Try another one
msg
=
Message
()
...
...
Lib/email/test/test_email_codecs.py
View file @
e58df829
# Copyright (C) 2002 Python Software Foundation
# Copyright (C) 2002-2006 Python Software Foundation
# Contact: email-sig@python.org
# email package unit tests for (optional) Asian codecs
import
unittest
...
...
@@ -7,6 +8,8 @@ from test.test_support import TestSkipped, run_unittest
from
email.test.test_email
import
TestEmailBase
from
email.Charset
import
Charset
from
email.Header
import
Header
,
decode_header
from
email.Message
import
Message
class
TestEmailAsianCodecs
(
TestEmailBase
):
...
...
@@ -42,6 +45,14 @@ Hello World! =?iso-2022-jp?b?GyRCJU8lbSE8JW8hPCVrJUkhKhsoQg==?=
# TK: full decode comparison
eq
(
h
.
__unicode__
().
encode
(
'euc-jp'
),
long
)
def
test_payload_encoding
(
self
):
jhello
=
'
\
xa5
\
xcf
\
xa5
\
xed
\
xa1
\
xbc
\
xa5
\
xef
\
xa1
\
xbc
\
xa5
\
xeb
\
xa5
\
xc9
\
xa1
\
xaa
'
jcode
=
'euc-jp'
msg
=
Message
()
msg
.
set_payload
(
jhello
,
jcode
)
ustr
=
unicode
(
msg
.
get_payload
(),
msg
.
get_content_charset
())
self
.
assertEqual
(
jhello
,
ustr
.
encode
(
jcode
))
def
suite
():
...
...
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