diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-03-15 20:38:15 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-03-15 20:38:15 -0400 |
commit | 612528d95db89c9e728db979c65ed7d774291ba1 (patch) | |
tree | 17410ea2a9f6bcbf126a7f8b3e18624238cd27ff /Lib/email/parser.py | |
parent | f3f06817946d149fb401c09fa48a08a2f1fd5a3f (diff) | |
download | cpython-git-612528d95db89c9e728db979c65ed7d774291ba1.tar.gz |
#17431: Fix missing import of BytesFeedParser in email.parser.
Initial patch contributed by Edmond Burnett.
Diffstat (limited to 'Lib/email/parser.py')
-rw-r--r-- | Lib/email/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/parser.py b/Lib/email/parser.py index 1c931ea9de..4e9673282e 100644 --- a/Lib/email/parser.py +++ b/Lib/email/parser.py @@ -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 |