added a few more __all__ lists

test___all__.py: fail silently in check_all if the module can't be imported
This commit is contained in:
Skip Montanaro 2001-01-25 15:29:22 +00:00
parent 438bb94789
commit 03d9014992
4 changed files with 16 additions and 8 deletions

View file

@ -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)