Whether the locking is blocking or not. .. versionadded:: 3.14.0
(self)
| 291 | |
| 292 | @property |
| 293 | def blocking(self) -> bool: |
| 294 | """ |
| 295 | Whether the locking is blocking or not. |
| 296 | |
| 297 | .. versionadded:: 3.14.0 |
| 298 | |
| 299 | """ |
| 300 | return self._context.blocking |
| 301 | |
| 302 | @blocking.setter |
| 303 | def blocking(self, value: bool) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected