diff options
author | Barry Warsaw <barry@python.org> | 2003-05-29 19:39:33 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2003-05-29 19:39:33 (GMT) |
commit | db6888b7dfa25e2b298f6e419673f137fdcce347 (patch) | |
tree | 9996c27cf14bfc0e6f9e1956813f2bb92c61c32b /Lib/email/__init__.py | |
parent | 65f8cedd4a9820e5d069ece0194b7da0b1e4e33c (diff) | |
download | cpython-db6888b7dfa25e2b298f6e419673f137fdcce347.zip cpython-db6888b7dfa25e2b298f6e419673f137fdcce347.tar.gz cpython-db6888b7dfa25e2b298f6e419673f137fdcce347.tar.bz2 |
_make_boundary(): Fix for SF bug #745478, broken boundary calculation
in some locales. This code simplifies the boundary algorithm to use
randint() which is what we wanted anyway.
Bump package version to 2.5.3.
Backport candidate for Python 2.2.3
Diffstat (limited to 'Lib/email/__init__.py')
-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 d9462bc..b5d8d72 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__ = '2.5.2' +__version__ = '2.5.3' __all__ = [ 'base64MIME', |