Home
last modified time | relevance | path

Searched refs:NLCRE (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/email/
Dfeedparser.py29 NLCRE = re.compile('\r\n|\r|\n') variable
230 if not NLCRE.match(line):
259 self._input.push_eof_matcher(NLCRE.match)
/external/python/cpython3/Lib/email/
Dfeedparser.py31 NLCRE = re.compile(r'\r\n|\r|\n') variable
232 if not NLCRE.match(line):
263 self._input.push_eof_matcher(NLCRE.match)
Dgenerator.py21 NLCRE = re.compile(r'\r\n|\r|\n') variable
153 lines = NLCRE.split(lines)