summaryrefslogtreecommitdiffstats
path: root/Lib/mimify.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-01-25 15:29:22 (GMT)
committerSkip Montanaro <skip@pobox.com>2001-01-25 15:29:22 (GMT)
commit03d90149920274b58f6ab121caae81ae9c424946 (patch)
tree8bea349ad17369f28f22d176b5a6e0fedc7c2542 /Lib/mimify.py
parent438bb947893e92455decfaadd739034fe26e192a (diff)
downloadcpython-03d90149920274b58f6ab121caae81ae9c424946.zip
cpython-03d90149920274b58f6ab121caae81ae9c424946.tar.gz
cpython-03d90149920274b58f6ab121caae81ae9c424946.tar.bz2
added a few more __all__ lists
test___all__.py: fail silently in check_all if the module can't be imported
Diffstat (limited to 'Lib/mimify.py')
-rwxr-xr-xLib/mimify.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/mimify.py b/Lib/mimify.py
index 34b0206..cb86c9e 100755
--- a/Lib/mimify.py
+++ b/Lib/mimify.py
@@ -29,6 +29,8 @@ QUOTE = '> ' # string replies are quoted with
import re, string
+__all__ = ["mimify","unmimify","mime_encode_header","mime_decode_header"]
+
qp = re.compile('^content-transfer-encoding:\\s*quoted-printable', re.I)
base64_re = re.compile('^content-transfer-encoding:\\s*base64', re.I)
mp = re.compile('^content-type:.*multipart/.*boundary="?([^;"\n]*)', re.I|re.S)