From b742a96c523339d640ca9dc3d077ef9b6ec13d8e Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 25 Nov 2009 18:45:15 +0000 Subject: [PATCH] Add mktime_tz to __all__. It's documented as being available in email.utils. --- Lib/email/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/email/utils.py b/Lib/email/utils.py index 465903f88d3..7e63ae48a8b 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',