Commit 2fab3587 authored by R David Murray's avatar R David Murray

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

parent 5efee580
...@@ -4,7 +4,8 @@ ...@@ -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
......
...@@ -280,6 +280,8 @@ Core and Builtins ...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment