mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Merge: #17431: Fix missing import of BytesFeedParser in email.parser.
This commit is contained in:
commit
8093d6f822
4 changed files with 8 additions and 1 deletions
|
@ -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 = ' '
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue