diff options
author | Barry Warsaw <barry@python.org> | 2006-03-18 15:41:53 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2006-03-18 15:41:53 +0000 |
commit | 40ef0067ad5af2458c54cc0316831ddb701ea3fd (patch) | |
tree | 52204dc86cfb735d4aadff24864af50da4fe78de /Lib/email/_parseaddr.py | |
parent | 9ae019bf5b92d9ac0ee8bb53829f6b5a16d5fab2 (diff) | |
download | cpython-git-40ef0067ad5af2458c54cc0316831ddb701ea3fd.tar.gz |
Merge email package 4.0 from the sandbox, including documentation, test cases,
and NEWS updates.
Diffstat (limited to 'Lib/email/_parseaddr.py')
-rw-r--r-- | Lib/email/_parseaddr.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/email/_parseaddr.py b/Lib/email/_parseaddr.py index 7d759efbcf..109ff5f7c7 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 = ' ' |