commit | 40ef0067ad5af2458c54cc0316831ddb701ea3fd | [log] [tgz] |
---|---|---|
author | Barry Warsaw <barry@python.org> | Sat Mar 18 15:41:53 2006 +0000 |
committer | Barry Warsaw <barry@python.org> | Sat Mar 18 15:41:53 2006 +0000 |
tree | 52204dc86cfb735d4aadff24864af50da4fe78de | |
parent | 9ae019bf5b92d9ac0ee8bb53829f6b5a16d5fab2 [diff] [blame] |
Merge email package 4.0 from the sandbox, including documentation, test cases, and NEWS updates.
diff --git a/Lib/email/_parseaddr.py b/Lib/email/_parseaddr.py index 7d759ef..109ff5f 100644 --- a/Lib/email/_parseaddr.py +++ b/Lib/email/_parseaddr.py
@@ -6,6 +6,13 @@ Lifted directly from rfc822.py. This should eventually be rewritten. """ +__all__ = [ + 'mktime_tz', + 'parsedate', + 'parsedate_tz', + 'quote', + ] + import time SPACE = ' '