diff options
author | Barry Warsaw <barry@python.org> | 2004-11-29 01:10:14 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2004-11-29 01:10:14 +0000 |
commit | 99b7d6445c96c152377d12f14c9af867025df151 (patch) | |
tree | 3f4b30b1e06ff56de0469760b24a6b7a9f3f5cc8 | |
parent | Whitespace normalization. (diff) | |
download | cpython-99b7d6445c96c152377d12f14c9af867025df151.tar.gz cpython-99b7d6445c96c152377d12f14c9af867025df151.tar.bz2 cpython-99b7d6445c96c152377d12f14c9af867025df151.zip |
There's likely nothing more to do to the email package before Python 2.4 is
final, so I'm marking email's version number as "3.0" (e.g. final).
-rw-r--r-- | Lib/email/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/__init__.py b/Lib/email/__init__.py index 11a44921ae7..6a3f3ac9538 100644 --- a/Lib/email/__init__.py +++ b/Lib/email/__init__.py @@ -4,7 +4,7 @@ """A package for parsing, handling, and generating email messages.""" -__version__ = '3.0b1' +__version__ = '3.0' __all__ = [ 'base64MIME', |