(self, exc, value, tb)
| 535 | # Need to trap __exit__ as well to ensure the file gets |
| 536 | # deleted when used in a with statement |
| 537 | def __exit__(self, exc, value, tb): |
| 538 | result = self.file.__exit__(exc, value, tb) |
| 539 | self._closer.cleanup() |
| 540 | return result |
| 541 | |
| 542 | def close(self): |
| 543 | """ |