diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-03-16 00:42:29 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-03-16 00:42:29 (GMT) |
commit | 8093d6f822133ec552aa32279cd53ea8caa8168e (patch) | |
tree | 8dc9f032a395746efea9cecd46c254723350e4fc /Lib/email | |
parent | ca99440c2c0749b73b7a44304186776089b776ba (diff) | |
parent | 612528d95db89c9e728db979c65ed7d774291ba1 (diff) | |
download | cpython-8093d6f822133ec552aa32279cd53ea8caa8168e.zip cpython-8093d6f822133ec552aa32279cd53ea8caa8168e.tar.gz cpython-8093d6f822133ec552aa32279cd53ea8caa8168e.tar.bz2 |
Merge: #17431: Fix missing import of BytesFeedParser in email.parser.
Diffstat (limited to 'Lib/email')
-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 1aab012..752bf35 100644 --- a/Lib/email/parser.py +++ b/Lib/email/parser.py @@ -9,7 +9,7 @@ __all__ = ['Parser', 'HeaderParser', 'BytesParser', 'BytesHeaderParser'] import warnings from io import StringIO, TextIOWrapper -from email.feedparser import FeedParser +from email.feedparser import FeedParser, BytesFeedParser from email.message import Message from email._policybase import compat32 |