diff options
author | Barry Warsaw <barry@python.org> | 2009-11-25 18:38:24 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2009-11-25 18:38:24 +0000 |
commit | 546b2121ffda7ed3ce6426fa16071e09ea9b39b0 (patch) | |
tree | f2e572faf9eb6dc8b2982644ae73b5ae9d1c2b81 | |
parent | eac9d3892f8991c0586ae11e931933903e040b88 (diff) | |
download | cpython-git-546b2121ffda7ed3ce6426fa16071e09ea9b39b0.tar.gz |
Add mktime_tz to __all__. It's documented as being available in email.utils.
-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 50010e69b0..87979dc873 100644 --- a/Lib/email/utils.py +++ b/Lib/email/utils.py @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2006 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', |