Commit any pending transaction to the database.
(self)
| 300 | raise ex.with_traceback(None) |
| 301 | |
| 302 | def commit(self) -> None: |
| 303 | """Commit any pending transaction to the database.""" |
| 304 | with self.lock: |
| 305 | self.wait(self._commit_gen()) |
| 306 | |
| 307 | def rollback(self) -> None: |
| 308 | """Roll back to the start of any pending transaction.""" |
no test coverage detected