diff options
author | Skip Montanaro <skip@pobox.com> | 2001-01-25 15:29:22 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-01-25 15:29:22 (GMT) |
commit | 03d90149920274b58f6ab121caae81ae9c424946 (patch) | |
tree | 8bea349ad17369f28f22d176b5a6e0fedc7c2542 /Lib/mimetools.py | |
parent | 438bb947893e92455decfaadd739034fe26e192a (diff) | |
download | cpython-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/mimetools.py')
-rw-r--r-- | Lib/mimetools.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/mimetools.py b/Lib/mimetools.py index bb8a299..81913bd 100644 --- a/Lib/mimetools.py +++ b/Lib/mimetools.py @@ -5,6 +5,8 @@ import os import rfc822 import tempfile +__all__ = ["Message","choose_boundary","encode","decode","copyliteral", + "copybinary"] class Message(rfc822.Message): """A derived class of rfc822.Message that knows about MIME headers and |