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

This commit is contained in:
R David Murray 2013-03-15 20:42:29 -04:00
commit 8093d6f822
4 changed files with 8 additions and 1 deletions

View file

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