summaryrefslogtreecommitdiff
path: root/Lib/email/utils.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2009-11-25 18:38:24 +0000
committerBarry Warsaw <barry@python.org>2009-11-25 18:38:24 +0000
commit546b2121ffda7ed3ce6426fa16071e09ea9b39b0 (patch)
treef2e572faf9eb6dc8b2982644ae73b5ae9d1c2b81 /Lib/email/utils.py
parenteac9d3892f8991c0586ae11e931933903e040b88 (diff)
downloadcpython-git-546b2121ffda7ed3ce6426fa16071e09ea9b39b0.tar.gz
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.py3
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',