diff options
author | Barry Warsaw <barry@python.org> | 2004-11-29 01:10:14 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2004-11-29 01:10:14 (GMT) |
commit | 99b7d6445c96c152377d12f14c9af867025df151 (patch) | |
tree | 3f4b30b1e06ff56de0469760b24a6b7a9f3f5cc8 | |
parent | 26be2067e8dae5f9ec0a59c489322f2d598f32bb (diff) | |
download | cpython-99b7d6445c96c152377d12f14c9af867025df151.zip cpython-99b7d6445c96c152377d12f14c9af867025df151.tar.gz cpython-99b7d6445c96c152377d12f14c9af867025df151.tar.bz2 |
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 11a4492..6a3f3ac 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', |