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