mirror of https://github.com/python/cpython
Add missing FeedParser and BytesFeedParser to email.parser.__all__.
This commit is contained in:
parent
5efee58014
commit
2fab35877d
|
@ -4,7 +4,8 @@
|
|||
|
||||
"""A parser of RFC 2822 and MIME email messages."""
|
||||
|
||||
__all__ = ['Parser', 'HeaderParser', 'BytesParser', 'BytesHeaderParser']
|
||||
__all__ = ['Parser', 'HeaderParser', 'BytesParser', 'BytesHeaderParser',
|
||||
'FeedParser', 'BytesFeedParser']
|
||||
|
||||
import warnings
|
||||
from io import StringIO, TextIOWrapper
|
||||
|
|
Loading…
Reference in New Issue