diff options
author | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
commit | 55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch) | |
tree | a0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/email.parser.rst | |
parent | 1617457cff847fed9fadb01f1acf6ba8bb621726 (diff) | |
download | cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2 |
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/email.parser.rst')
-rw-r--r-- | Doc/library/email.parser.rst | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Doc/library/email.parser.rst b/Doc/library/email.parser.rst index 048ed22..6d623a7 100644 --- a/Doc/library/email.parser.rst +++ b/Doc/library/email.parser.rst @@ -38,8 +38,6 @@ any way it finds necessary. FeedParser API ^^^^^^^^^^^^^^ -.. versionadded:: 2.4 - The :class:`FeedParser`, imported from the :mod:`email.feedparser` module, provides an API that is conducive to incremental parsing of email messages, such as would be necessary when reading the text of an email message from a source @@ -113,12 +111,6 @@ class. effectively non-strict. You should simply stop passing a *strict* flag to the :class:`Parser` constructor. - .. versionchanged:: 2.2.2 - The *strict* flag was added. - - .. versionchanged:: 2.4 - The *strict* flag was deprecated. - The other public :class:`Parser` methods are: @@ -136,9 +128,6 @@ The other public :class:`Parser` methods are: Optional *headersonly* is as with the :meth:`parse` method. - .. versionchanged:: 2.2.2 - The *headersonly* flag was added. - .. method:: Parser.parsestr(text[, headersonly]) @@ -150,8 +139,6 @@ The other public :class:`Parser` methods are: reading the headers or not. The default is ``False``, meaning it parses the entire contents of the file. - .. versionchanged:: 2.2.2 - The *headersonly* flag was added. Since creating a message object structure from a string or a file object is such a common task, two functions are provided as a convenience. They are available @@ -164,9 +151,6 @@ in the top-level :mod:`email` package namespace. ``Parser().parsestr(s)``. Optional *_class* and *strict* are interpreted as with the :class:`Parser` class constructor. - .. versionchanged:: 2.2.2 - The *strict* flag was added. - .. function:: message_from_file(fp[, _class[, strict]]) @@ -174,9 +158,6 @@ in the top-level :mod:`email` package namespace. exactly equivalent to ``Parser().parse(fp)``. Optional *_class* and *strict* are interpreted as with the :class:`Parser` class constructor. - .. versionchanged:: 2.2.2 - The *strict* flag was added. - Here's an example of how you might use this at an interactive Python prompt:: >>> import email |