Kaydet (Commit) 2fab3587 authored tarafından R David Murray's avatar R David Murray

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

üst 5efee580
......@@ -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
......
......@@ -280,6 +280,8 @@ Core and Builtins
Library
-------
- Added missing FeedParser and BytesFeedParser to email.parser.__all__.
- Issue #17431: Fix missing import of BytesFeedParser in email.parser.
- 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