(self, *args)
| 525 | include_children=self.include_children, filename=self.filename)) |
| 526 | |
| 527 | def __exit__(self, *args): |
| 528 | if self.ts is not None: |
| 529 | self.ts.current_stack_level -= 1 |
| 530 | |
| 531 | self.timestamps.append( |
| 532 | _get_memory(os.getpid(), self.backend, timestamps=True, |
| 533 | include_children=self.include_children, filename=self.filename)) |
| 534 | |
| 535 | |
| 536 | class TimeStamper: |
nothing calls this directly
no test coverage detected