Home
last modified time | relevance | path

Searched refs:FeedParser (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Doc/library/
Demail.parser.rst25 :class:`Parser` API and the incremental :class:`FeedParser` API. The classic
28 :class:`FeedParser` is more appropriate for when you're reading the message from
30 from a socket). The :class:`FeedParser` can consume and parse the message
40 FeedParser API
45 The :class:`FeedParser`, imported from the :mod:`email.feedparser` module,
48 that can block (e.g. a socket). The :class:`FeedParser` can of course be used
53 The :class:`FeedParser`'s API is simple; you create an instance, feed it a bunch
55 root message object. The :class:`FeedParser` is extremely accurate when parsing
62 Here is the API for the :class:`FeedParser`:
65 .. class:: FeedParser([_factory])
[all …]
Demail.errors.rst64 Here's the list of the defects that the :class:`~email.parser.FeedParser`
Demail.rst132 * The :class:`~email.parser.FeedParser` class was introduced, and the
134 :class:`~email.parser.FeedParser`. All parsing therefore is
/external/python/cpython2/Lib/email/
Dparser.py12 from email.feedparser import FeedParser
64 feedparser = FeedParser(self._class)
Dfeedparser.py158 class FeedParser: class
/external/python/cpython2/Lib/email/test/
Dtest_email.py2634 from email.feedparser import FeedParser
2635 feedparser = FeedParser()
/external/python/cpython2/Doc/whatsnew/
D2.4.rst1071 available in the :mod:`email.FeedParser` module. The new parser doesn't require
/external/python/cpython2/Misc/
DNEWS1710 - Issue #21448: Changed FeedParser feed() to avoid O(N**2) behavior when
DHISTORY2359 + Some FeedParser fixes; also a MultipartInvariantViolationDefect will be