summaryrefslogtreecommitdiffstats
path: root/Lib/email/_parseaddr.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2006-03-18 15:41:53 (GMT)
committerBarry Warsaw <barry@python.org>2006-03-18 15:41:53 (GMT)
commit40ef0067ad5af2458c54cc0316831ddb701ea3fd (patch)
tree52204dc86cfb735d4aadff24864af50da4fe78de /Lib/email/_parseaddr.py
parent9ae019bf5b92d9ac0ee8bb53829f6b5a16d5fab2 (diff)
downloadcpython-40ef0067ad5af2458c54cc0316831ddb701ea3fd.zip
cpython-40ef0067ad5af2458c54cc0316831ddb701ea3fd.tar.gz
cpython-40ef0067ad5af2458c54cc0316831ddb701ea3fd.tar.bz2
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.py7
1 files changed, 7 insertions, 0 deletions
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 = ' '