Record the lock as fully released: reset the recursion counter and drop the deadlock-registry entry.
(self)
| 1380 | _registry.held.pop(key, None) |
| 1381 | |
| 1382 | def _commit_release(self) -> None: |
| 1383 | """Record the lock as fully released: reset the recursion counter and drop the deadlock-registry entry.""" |
| 1384 | self._context.lock_counter = 0 |
| 1385 | self._drop_registry_entry() |
| 1386 | |
| 1387 | def _try_break_expired_lock(self) -> None: |
| 1388 | """Remove the lock file if its modification time exceeds the configured :attr:`lifetime`.""" |
no test coverage detected