summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2009-11-25 18:38:32 (GMT)
committerBarry Warsaw <barry@python.org>2009-11-25 18:38:32 (GMT)
commit0d9f61a5437463c143a275a7b6bda257160dad76 (patch)
tree437b59253e49513328a1797a572780c5dada19df /Lib
parent42d26d94cc5fe633613c853c1e1b4b51f0855df4 (diff)
downloadcpython-0d9f61a5437463c143a275a7b6bda257160dad76.zip
cpython-0d9f61a5437463c143a275a7b6bda257160dad76.tar.gz
cpython-0d9f61a5437463c143a275a7b6bda257160dad76.tar.bz2
Add mktime_tz to __all__. It's documented as being available in email.utils.
Diffstat (limited to 'Lib')
-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 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',