summaryrefslogtreecommitdiffstats
path: root/Lib/mimify.py
diff options
context:
space:
mode:
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)