diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-08-12 12:16:42 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-08-12 12:16:42 (GMT) |
commit | 439e17fb0b0909457d36ee618c844c71c4e33398 (patch) | |
tree | 85a7f491300c34d7b5f8ea60e1926d5939e23130 /Doc/library/email.parser.rst | |
parent | 199b78d41ae81ee33928bedbbc0910b98d4edc27 (diff) | |
download | cpython-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.rst | 2 |
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 |