summaryrefslogtreecommitdiffstats
path: root/Lib/email
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-03-16 00:42:29 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-03-16 00:42:29 (GMT)
commit8093d6f822133ec552aa32279cd53ea8caa8168e (patch)
tree8dc9f032a395746efea9cecd46c254723350e4fc /Lib/email
parentca99440c2c0749b73b7a44304186776089b776ba (diff)
parent612528d95db89c9e728db979c65ed7d774291ba1 (diff)
downloadcpython-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.py2
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