(self)
| 431 | content_type=content_type) |
| 432 | |
| 433 | def nextpart(self): |
| 434 | boundary = self._boundary[-1] |
| 435 | if self._first_part: |
| 436 | self._first_part = False |
| 437 | else: |
| 438 | self._fp.write("\r\n") |
| 439 | self._fp.write("--" + boundary + "\r\n") |
| 440 | return self.__class__(self._fp) |
| 441 | |
| 442 | def lastpart(self): |
| 443 | if self._first_part: |
no test coverage detected