(self, data)
| 436 | self._datawritten = self._datawritten + len(data) |
| 437 | |
| 438 | def writeframes(self, data): |
| 439 | self.writeframesraw(data) |
| 440 | if self._nframeswritten != self._nframes or \ |
| 441 | self._datalength != self._datawritten: |
| 442 | self._patchheader() |
| 443 | |
| 444 | def close(self): |
| 445 | if self._file: |
nothing calls this directly
no test coverage detected