summaryrefslogtreecommitdiffstats
path: root/Doc/library/email.parser.rst
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-12 12:16:42 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-08-12 12:16:42 (GMT)
commit439e17fb0b0909457d36ee618c844c71c4e33398 (patch)
tree85a7f491300c34d7b5f8ea60e1926d5939e23130 /Doc/library/email.parser.rst
parent199b78d41ae81ee33928bedbbc0910b98d4edc27 (diff)
downloadcpython-439e17fb0b0909457d36ee618c844c71c4e33398.zip
cpython-439e17fb0b0909457d36ee618c844c71c4e33398.tar.gz
cpython-439e17fb0b0909457d36ee618c844c71c4e33398.tar.bz2
update doctests
Diffstat (limited to 'Doc/library/email.parser.rst')
-rw-r--r--Doc/library/email.parser.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/email.parser.rst b/Doc/library/email.parser.rst
index 54e5521..6a43561 100644
--- a/Doc/library/email.parser.rst
+++ b/Doc/library/email.parser.rst
@@ -251,7 +251,7 @@ in the top-level :mod:`email` package namespace.
Here's an example of how you might use this at an interactive Python prompt::
>>> import email
- >>> msg = email.message_from_string(myString)
+ >>> msg = email.message_from_string(myString) # doctest: +SKIP
Additional notes