diff options
author | Barry Warsaw <barry@python.org> | 2006-01-17 04:49:07 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2006-01-17 04:49:07 (GMT) |
commit | a0f28efcd1819d7baccd1a212a21ffb1af5558bd (patch) | |
tree | b025f080749070ab78d6ab85e6bc5f47398e46e2 /Lib/email/__init__.py | |
parent | 989b69a519b1f4a765310b705b30ab0449153591 (diff) | |
download | cpython-a0f28efcd1819d7baccd1a212a21ffb1af5558bd.zip cpython-a0f28efcd1819d7baccd1a212a21ffb1af5558bd.tar.gz cpython-a0f28efcd1819d7baccd1a212a21ffb1af5558bd.tar.bz2 |
Ported 42075 from release23-maint branch.
SF bug #1403349 solution for email 3.0; some MUAs use the 'file' parameter
name in the Content-Distribution header, so Message.get_filename() should fall
back to using that. Will port to the Python 2.5 trunk.
Also, bump the email package version to 3.0.1 for eventual release. Of
course, add a test case too.
XXX Need to update the documentation.
Diffstat (limited to 'Lib/email/__init__.py')
-rw-r--r-- | Lib/email/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/email/__init__.py b/Lib/email/__init__.py index e622b3f..e5c0e2e 100644 --- a/Lib/email/__init__.py +++ b/Lib/email/__init__.py @@ -1,10 +1,10 @@ -# Copyright (C) 2001-2004 Python Software Foundation +# Copyright (C) 2001-2006 Python Software Foundation # Author: Barry Warsaw # Contact: email-sig@python.org """A package for parsing, handling, and generating email messages.""" -__version__ = '3.0+' +__version__ = '3.0.1' __all__ = [ 'base64MIME', |