Lines Matching refs:epilogue
353 # epilogue with the empty string (see below).
394 # previous subpart's payload (or epilogue if the previous
397 epilogue = self._last.epilogue
398 if epilogue == '':
399 self._last.epilogue = None
400 elif epilogue is not None:
401 mo = NLCRE_eol.search(epilogue)
404 self._last.epilogue = epilogue[:-end]
428 epilogue = []
433 self._cur.epilogue = EMPTYSTRING.join(epilogue)
441 # Everything from here to the EOF is epilogue. If the end boundary
442 # ended in a newline, we'll need to make sure the epilogue isn't
445 epilogue = ['']
447 epilogue = []
452 epilogue.append(line)
453 # Any CRLF at the front of the epilogue is not technically part of
454 # the epilogue. Also, watch out for an empty string epilogue,
456 if epilogue:
457 firstline = epilogue[0]
460 epilogue[0] = firstline[len(bolmo.group(0)):]
461 self._cur.epilogue = EMPTYSTRING.join(epilogue)