mirror of
https://github.com/python/cpython.git
synced 2025-08-31 22:18:28 +00:00
#17431: Fix missing import of BytesFeedParser in email.parser.
Initial patch contributed by Edmond Burnett.
This commit is contained in:
parent
f3f0681794
commit
612528d95d
4 changed files with 8 additions and 1 deletions
|
@ -9,7 +9,7 @@ __all__ = ['Parser', 'HeaderParser', 'BytesParser']
|
|||
import warnings
|
||||
from io import StringIO, TextIOWrapper
|
||||
|
||||
from email.feedparser import FeedParser
|
||||
from email.feedparser import FeedParser, BytesFeedParser
|
||||
from email.message import Message
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue