(cls, *args, **kwargs)
| 1489 | |
| 1490 | if os.name == 'nt': |
| 1491 | def __new__(cls, *args, **kwargs): |
| 1492 | raise UnsupportedOperation( |
| 1493 | f"cannot instantiate {cls.__name__!r} on your system") |
| 1494 | |
| 1495 | class WindowsPath(Path, PureWindowsPath): |
| 1496 | """Path subclass for Windows systems. |
nothing calls this directly
no test coverage detected