(self)
| 167 | ) |
| 168 | |
| 169 | def _at_fork_reinit(self): |
| 170 | self._block._at_fork_reinit() |
| 171 | self._owner = None |
| 172 | self._count = 0 |
| 173 | |
| 174 | def acquire(self, blocking=True, timeout=-1): |
| 175 | """Acquire a lock, blocking or non-blocking. |
nothing calls this directly
no test coverage detected