bpo-35404: Clarify how to import _structure in email.message doc (GH-10886)
This commit is contained in:
parent
d6acf17c05
commit
e394ba3214
|
@ -487,7 +487,6 @@ message objects.
|
|||
from email import message_from_binary_file
|
||||
with open('../Lib/test/test_email/data/msg_16.txt', 'rb') as f:
|
||||
msg = message_from_binary_file(f)
|
||||
from email.iterators import _structure
|
||||
|
||||
.. doctest::
|
||||
|
||||
|
@ -509,6 +508,7 @@ message objects.
|
|||
|
||||
.. doctest::
|
||||
|
||||
>>> from email.iterators import _structure
|
||||
>>> for part in msg.walk():
|
||||
... print(part.get_content_maintype() == 'multipart',
|
||||
... part.is_multipart())
|
||||
|
|
Loading…
Reference in New Issue