diff options
| author | Barry Warsaw <barry@python.org> | 2009-11-25 18:38:24 (GMT) |
|---|---|---|
| committer | Barry Warsaw <barry@python.org> | 2009-11-25 18:38:24 (GMT) |
| commit | 546b2121ffda7ed3ce6426fa16071e09ea9b39b0 (patch) | |
| tree | f2e572faf9eb6dc8b2982644ae73b5ae9d1c2b81 | |
| parent | eac9d3892f8991c0586ae11e931933903e040b88 (diff) | |
| download | cpython-546b2121ffda7ed3ce6426fa16071e09ea9b39b0.zip cpython-546b2121ffda7ed3ce6426fa16071e09ea9b39b0.tar.gz cpython-546b2121ffda7ed3ce6426fa16071e09ea9b39b0.tar.bz2 | |
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 50010e6..87979dc 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', |
