
python-checkins at python
Nov 25, 2009, 12:20 PM
Post #1 of 1
(197 views)
Permalink
|
|
r76524 - python/branches/py3k/Lib/email/utils.py
|
|
Author: barry.warsaw Date: Wed Nov 25 19:45:15 2009 New Revision: 76524 Log: Add mktime_tz to __all__. It's documented as being available in email.utils. Modified: python/branches/py3k/Lib/email/utils.py Modified: python/branches/py3k/Lib/email/utils.py ============================================================================== --- python/branches/py3k/Lib/email/utils.py (original) +++ python/branches/py3k/Lib/email/utils.py Wed Nov 25 19:45:15 2009 @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2007 Python Software Foundation +# Copyright (C) 2001-2009 Python Software Foundation # Author: Barry Warsaw # Contact: email-sig [at] python @@ -13,6 +13,7 @@ 'formatdate', 'getaddresses', 'make_msgid', + 'mktime_tz', 'parseaddr', 'parsedate', 'parsedate_tz', _______________________________________________ Python-checkins mailing list Python-checkins [at] python http://mail.python.org/mailman/listinfo/python-checkins
|