mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
Add missing FeedParser and BytesFeedParser to email.parser.__all__.
This commit is contained in:
parent
5efee58014
commit
2fab35877d
2 changed files with 4 additions and 1 deletions
|
@ -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
|
||||||
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue