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/test | |
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/test')
-rw-r--r-- | Lib/test/test_email/test_email.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py index 23f062f..eaed26f 100644 --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -36,6 +36,10 @@ from email import quoprimime from test.support import unlink from test.test_email import openfile, TestEmailBase +# These imports are documented to work, but we are testing them using a +# different path, so we import them here just to make sure they are importable. +from email.parser import FeedParser, BytesFeedParser + NL = '\n' EMPTYSTRING = '' SPACE = ' ' |