#11686: add missing entries to email __all__ lists.

Original patch by Steffen Daode Nurpmeso
This commit is contained in:
R David Murray 2012-03-16 22:43:05 -04:00
parent 41914349ad
commit 1b6c724df0
5 changed files with 9 additions and 11 deletions

View File

@ -11,6 +11,7 @@ __all__ = [
'charset',
'encoders',
'errors',
'feedparser',
'generator',
'header',
'iterators',

View File

@ -19,7 +19,7 @@ the current message. Defects are just instances that live on the message
object's .defects attribute.
"""
__all__ = ['FeedParser']
__all__ = ['FeedParser', 'BytesFeedParser']
import re

View File

@ -4,7 +4,7 @@
"""Classes to generate plain text from a message object tree."""
__all__ = ['Generator', 'DecodedGenerator']
__all__ = ['Generator', 'DecodedGenerator', 'BytesGenerator']
import re
import sys

View File

@ -4,7 +4,7 @@
"""A parser of RFC 2822 and MIME email messages."""
__all__ = ['Parser', 'HeaderParser']
__all__ = ['Parser', 'HeaderParser', 'BytesParser']
import warnings
from io import StringIO, TextIOWrapper

View File

@ -2518,14 +2518,11 @@ class TestMiscellaneous(TestEmailBase):
def test__all__(self):
module = __import__('email')
# Can't use sorted() here due to Python 2.3 compatibility
all = module.__all__[:]
all.sort()
self.assertEqual(all, [
'base64mime', 'charset', 'encoders', 'errors', 'generator',
'header', 'iterators', 'message', 'message_from_binary_file',
'message_from_bytes', 'message_from_file',
'message_from_string', 'mime', 'parser',
self.assertEqual(sorted(module.__all__), [
'base64mime', 'charset', 'encoders', 'errors', 'feedparser',
'generator', 'header', 'iterators', 'message',
'message_from_binary_file', 'message_from_bytes',
'message_from_file', 'message_from_string', 'mime', 'parser',
'quoprimime', 'utils',
])