#17431: Fix missing import of BytesFeedParser in email.parser.

Initial patch contributed by Edmond Burnett.
This commit is contained in:
R David Murray 2013-03-15 20:38:15 -04:00
parent f3f0681794
commit 612528d95d
4 changed files with 8 additions and 1 deletions

View file

@ -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