(self)
| 591 | |
| 592 | class _SlowRollbackCon: |
| 593 | def rollback(self) -> None: # noqa: PLR6301 |
| 594 | started.set() |
| 595 | proceed.wait(timeout=5) |
| 596 | real_con.rollback() |
| 597 | |
| 598 | def __getattr__(self, name: str) -> object: |
| 599 | return getattr(real_con, name) |
no outgoing calls
no test coverage detected