Add missing FeedParser and BytesFeedParser to email.parser.__all__.

This commit is contained in:
R David Murray 2013-03-15 21:00:48 -04:00
parent 5efee58014
commit 2fab35877d
2 changed files with 4 additions and 1 deletions

View file

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

View file

@ -280,6 +280,8 @@ Core and Builtins
Library Library
------- -------
- Added missing FeedParser and BytesFeedParser to email.parser.__all__.
- Issue #17431: Fix missing import of BytesFeedParser in email.parser. - Issue #17431: Fix missing import of BytesFeedParser in email.parser.
- Issue #12921: http.server's send_error takes an explain argument to send more - Issue #12921: http.server's send_error takes an explain argument to send more