()
| 49 | from ctypes import CDLL as WinDLL, cdll as windll |
| 50 | |
| 51 | def get_last_error() -> int: |
| 52 | return 42 |
| 53 | |
| 54 | class WinError(OSError): # type: ignore[no-redef] |
| 55 | def __init__(self, err: int | None, descr: str | None = None) -> None: |
no outgoing calls
no test coverage detected
searching dependent graphs…