(cls, *args, **kwargs)
| 1291 | |
| 1292 | if os.name == 'nt': |
| 1293 | def __new__(cls, *args, **kwargs): |
| 1294 | raise UnsupportedOperation( |
| 1295 | f"cannot instantiate {cls.__name__!r} on your system") |
| 1296 | |
| 1297 | class WindowsPath(Path, PureWindowsPath): |
| 1298 | """Path subclass for Windows systems. |
nothing calls this directly
no test coverage detected