Home
last modified time | relevance | path

Searched refs:FeedParser (Results 1 – 20 of 20) 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/cpython3/Lib/email/
Dparser.py12 from email.feedparser import FeedParser, BytesFeedParser
49 feedparser = FeedParser(self._class, policy=self.policy)
Dfeedparser.py136 class FeedParser: class
532 class BytesFeedParser(FeedParser):
/external/python/cpython3/Doc/library/
Demail.parser.rst31 API and the incremental :class:`FeedParser` API. The :class:`Parser` API is
33 entire message lives in a file on the file system. :class:`FeedParser` is more
36 :class:`FeedParser` can consume and parse the message incrementally, and only
48 FeedParser API
114 .. class:: FeedParser(_factory=None, *, policy=policy.compat32)
317 If such messages were parsed with the :class:`~email.parser.FeedParser`,
Demail.errors.rst62 Here is the list of the defects that the :class:`~email.parser.FeedParser`
/external/python/google-api-python-client/googleapiclient/
Dhttp.py56 from email.parser import FeedParser
1331 parser = FeedParser()
1459 parser = FeedParser()
/external/python/cpython3/Lib/
Dcgi.py39 from email.parser import FeedParser
630 parser = FeedParser()
/external/python/httplib2/python2/httplib2/
D__init__.py28 import email.FeedParser
2047 feedparser = email.FeedParser.FeedParser()
/external/python/cpython2/Misc/NEWS.d/
D2.7.9rc1.rst649 Changed FeedParser feed() to avoid O(N**2) behavior when parsing long line.
/external/python/cpython2/Lib/email/test/
Dtest_email.py2634 from email.feedparser import FeedParser
2635 feedparser = FeedParser()
/external/python/cpython3/Lib/test/test_email/
Dtest_email.py45 from email.parser import FeedParser, BytesFeedParser
3549 feedparser = FeedParser()
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst913 :class:`email.feedparser.FeedParser` now handles (malformed) headers with no
2651 Changed FeedParser feed() to avoid O(N**2) behavior when parsing long line.
/external/python/cpython2/Doc/whatsnew/
D2.4.rst1071 available in the :mod:`email.FeedParser` module. The new parser doesn't require
/external/python/cpython3/Doc/whatsnew/
D2.4.rst1071 available in the :mod:`email.FeedParser` module. The new parser doesn't require
/external/python/cpython3/Misc/
DHISTORY1035 - Issue #19996: :class:`email.feedparser.FeedParser` now handles (malformed)
1503 - Issue #21448: Changed FeedParser feed() to avoid O(N**2) behavior when
5237 - Added missing FeedParser and BytesFeedParser to email.parser.__all__.
19743 + Some FeedParser fixes; also a MultipartInvariantViolationDefect will be
/external/python/cpython2/Misc/
DHISTORY2359 + Some FeedParser fixes; also a MultipartInvariantViolationDefect will be