bpo-35404: Clarify how to import _structure in email.message doc (GH-10886)

This commit is contained in:
Charles-Axel Dein 2019-01-09 23:52:10 +01:00 committed by Brian Curtin
parent d6acf17c05
commit e394ba3214

View file

@ -487,7 +487,6 @@ message objects.
from email import message_from_binary_file from email import message_from_binary_file
with open('../Lib/test/test_email/data/msg_16.txt', 'rb') as f: with open('../Lib/test/test_email/data/msg_16.txt', 'rb') as f:
msg = message_from_binary_file(f) msg = message_from_binary_file(f)
from email.iterators import _structure
.. doctest:: .. doctest::
@ -509,6 +508,7 @@ message objects.
.. doctest:: .. doctest::
>>> from email.iterators import _structure
>>> for part in msg.walk(): >>> for part in msg.walk():
... print(part.get_content_maintype() == 'multipart', ... print(part.get_content_maintype() == 'multipart',
... part.is_multipart()) ... part.is_multipart())