diff options
| author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-11 14:33:51 (GMT) |
|---|---|---|
| committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-11 14:33:51 (GMT) |
| commit | 74b8d333b708e2f029f60a06bbb5abb31199426f (patch) | |
| tree | 395efe22fbfc0239eb794063d4add723a714c5cf /Lib/email/base64mime.py | |
| parent | c91cbb948a223f0921300dc7b4f4b762b60420f3 (diff) | |
| download | cpython-74b8d333b708e2f029f60a06bbb5abb31199426f.zip cpython-74b8d333b708e2f029f60a06bbb5abb31199426f.tar.gz cpython-74b8d333b708e2f029f60a06bbb5abb31199426f.tar.bz2 | |
#2622 Import errors in email.message, from a py2app standalone application.
Patch by Mads Kiilerich, Reviewed by Barry Warsaw.
Diffstat (limited to 'Lib/email/base64mime.py')
| -rw-r--r-- | Lib/email/base64mime.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/email/base64mime.py b/Lib/email/base64mime.py index 05f960c..8804427 100644 --- a/Lib/email/base64mime.py +++ b/Lib/email/base64mime.py @@ -20,7 +20,7 @@ in To:, From:, Cc:, etc. fields, as well as Subject: lines. This module does not do the line wrapping or end-of-line character conversion necessary for proper internationalized headers; it only does dumb encoding and -decoding. To deal with the various line wrapping issues, use the email.Header +decoding. To deal with the various line wrapping issues, use the email.header module. """ @@ -167,7 +167,7 @@ def decode(s, convert_eols=None): This function does not parse a full MIME header value encoded with base64 (like =?iso-8895-1?b?bmloISBuaWgh?=) -- please use the high - level email.Header class for that functionality. + level email.header class for that functionality. """ if not s: return s |
