Searched refs:FeedParser (Results 1 – 20 of 20) sorted by relevance
/external/python/cpython2/Doc/library/ |
D | email.parser.rst | 25 :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 …]
|
D | email.errors.rst | 64 Here's the list of the defects that the :class:`~email.parser.FeedParser`
|
D | email.rst | 132 * The :class:`~email.parser.FeedParser` class was introduced, and the 134 :class:`~email.parser.FeedParser`. All parsing therefore is
|
/external/python/cpython2/Lib/email/ |
D | parser.py | 12 from email.feedparser import FeedParser 64 feedparser = FeedParser(self._class)
|
D | feedparser.py | 158 class FeedParser: class
|
/external/python/cpython3/Lib/email/ |
D | parser.py | 12 from email.feedparser import FeedParser, BytesFeedParser 49 feedparser = FeedParser(self._class, policy=self.policy)
|
D | feedparser.py | 136 class FeedParser: class 532 class BytesFeedParser(FeedParser):
|
/external/python/cpython3/Doc/library/ |
D | email.parser.rst | 31 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`,
|
D | email.errors.rst | 62 Here is the list of the defects that the :class:`~email.parser.FeedParser`
|
/external/python/google-api-python-client/googleapiclient/ |
D | http.py | 56 from email.parser import FeedParser 1331 parser = FeedParser() 1459 parser = FeedParser()
|
/external/python/cpython3/Lib/ |
D | cgi.py | 39 from email.parser import FeedParser 630 parser = FeedParser()
|
/external/python/httplib2/python2/httplib2/ |
D | __init__.py | 28 import email.FeedParser 2047 feedparser = email.FeedParser.FeedParser()
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.9rc1.rst | 649 Changed FeedParser feed() to avoid O(N**2) behavior when parsing long line.
|
/external/python/cpython2/Lib/email/test/ |
D | test_email.py | 2634 from email.feedparser import FeedParser 2635 feedparser = FeedParser()
|
/external/python/cpython3/Lib/test/test_email/ |
D | test_email.py | 45 from email.parser import FeedParser, BytesFeedParser 3549 feedparser = FeedParser()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 913 :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/ |
D | 2.4.rst | 1071 available in the :mod:`email.FeedParser` module. The new parser doesn't require
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.4.rst | 1071 available in the :mod:`email.FeedParser` module. The new parser doesn't require
|
/external/python/cpython3/Misc/ |
D | HISTORY | 1035 - 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/ |
D | HISTORY | 2359 + Some FeedParser fixes; also a MultipartInvariantViolationDefect will be
|