(self)
| 440 | return self.__class__(self._fp) |
| 441 | |
| 442 | def lastpart(self): |
| 443 | if self._first_part: |
| 444 | self.nextpart() |
| 445 | boundary = self._boundary.pop() |
| 446 | self._fp.write("\r\n--" + boundary + "--\r\n") |
| 447 | |
| 448 | |
| 449 | class LocateError(ValueError): pass |
no test coverage detected