| 14 | from typing import Protocol |
| 15 | |
| 16 | class FcntlModule(Protocol): |
| 17 | LOCK_UN: int |
| 18 | |
| 19 | @staticmethod |
| 20 | def flock(fd: int, operation: int) -> None: ... |
| 21 | |
| 22 | |
| 23 | def assert_cancellation_message(error: asyncio.CancelledError, message: str) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected