Enters a context inside which operations are recorded on this tape.
(self)
| 799 | context.context().start_step() |
| 800 | |
| 801 | def __enter__(self): |
| 802 | """Enters a context inside which operations are recorded on this tape.""" |
| 803 | self._push_tape() |
| 804 | return self |
| 805 | |
| 806 | def __exit__(self, typ, value, traceback): |
| 807 | """Exits the recording context, no further operations are traced.""" |
nothing calls this directly
no test coverage detected