Home
last modified time | relevance | path

Searched refs:NeedMoreData (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/email/
Dfeedparser.py39 NeedMoreData = object() variable
77 return NeedMoreData
93 assert line is not NeedMoreData
223 if line is NeedMoreData:
224 yield NeedMoreData
244 if line is NeedMoreData:
245 yield NeedMoreData
261 if retval is NeedMoreData:
262 yield NeedMoreData
276 if line is NeedMoreData:
[all …]
/external/python/cpython2/Lib/email/test/
Dtest_email.py2597 from email.feedparser import BufferedSubFile, NeedMoreData
2605 for ol in iter(bsf.readline, NeedMoreData):
2613 from email.feedparser import BufferedSubFile, NeedMoreData
2627 lines.extend(iter(bsf.readline, NeedMoreData))