Home | History | Annotate | Download | only in email

Lines Matching full:epilogue

321                     # epilogue with the empty string (see below).
361 # previous subpart's payload (or epilogue if the previous
364 epilogue = self._last.epilogue
365 if epilogue == '':
366 self._last.epilogue = None
367 elif epilogue is not None:
368 mo = NLCRE_eol.search(epilogue)
371 self._last.epilogue = epilogue[:-end]
391 # Everything from here to the EOF is epilogue.
395 epilogue = []
400 self._cur.epilogue = EMPTYSTRING.join(epilogue)
403 # the epilogue isn't None
405 epilogue = ['']
407 epilogue = []
412 epilogue.append(line)
413 # Any CRLF at the front of the epilogue is not technically part of
414 # the epilogue. Also, watch out for an empty string epilogue,
416 if epilogue:
417 firstline = epilogue[0]
420 epilogue[0] = firstline[len(bolmo.group(0)):]
421 self._cur.epilogue = EMPTYSTRING.join(epilogue)