From: Barry Warsaw Date: Wed, 25 Nov 2009 18:38:24 +0000 (+0000) Subject: Add mktime_tz to __all__. It's documented as being available in email.utils. X-Git-Tag: v2.6.5rc1~316 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=546b2121ffda7ed3ce6426fa16071e09ea9b39b0;p=thirdparty%2FPython%2Fcpython.git Add mktime_tz to __all__. It's documented as being available in email.utils. --- diff --git a/Lib/email/utils.py b/Lib/email/utils.py index 50010e69b063..87979dc87342 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',