diff options
author | Barry Warsaw <barry@python.org> | 2009-11-25 18:45:15 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2009-11-25 18:45:15 (GMT) |
commit | b742a96c523339d640ca9dc3d077ef9b6ec13d8e (patch) | |
tree | af334649187fe0799464970e8743a042b79ed968 /Lib/email/utils.py | |
parent | e360795dd4b4ec814f6a2b3bdfd1cb37e6ec9cb0 (diff) | |
download | cpython-b742a96c523339d640ca9dc3d077ef9b6ec13d8e.zip cpython-b742a96c523339d640ca9dc3d077ef9b6ec13d8e.tar.gz cpython-b742a96c523339d640ca9dc3d077ef9b6ec13d8e.tar.bz2 |
Add mktime_tz to __all__. It's documented as being available in email.utils.
Diffstat (limited to 'Lib/email/utils.py')
-rw-r--r-- | Lib/email/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/email/utils.py b/Lib/email/utils.py index 465903f..7e63ae4 100644 --- a/Lib/email/utils.py +++ b/Lib/email/utils.py @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2007 Python Software Foundation +# Copyright (C) 2001-2009 Python Software Foundation # Author: Barry Warsaw # Contact: email-sig@python.org @@ -13,6 +13,7 @@ __all__ = [ 'formatdate', 'getaddresses', 'make_msgid', + 'mktime_tz', 'parseaddr', 'parsedate', 'parsedate_tz', |