PurePath subclass for Windows systems. On a Windows system, instantiating a PurePath should return this object. However, you can also instantiate it directly on any system.
| 602 | |
| 603 | |
| 604 | class PureWindowsPath(PurePath): |
| 605 | """PurePath subclass for Windows systems. |
| 606 | |
| 607 | On a Windows system, instantiating a PurePath should return this object. |
| 608 | However, you can also instantiate it directly on any system. |
| 609 | """ |
| 610 | parser = ntpath |
| 611 | __slots__ = () |
| 612 | |
| 613 | |
| 614 | _STAT_RESULT_ERROR = [] # falsy sentinel indicating stat() failed. |
no outgoing calls
no test coverage detected
searching dependent graphs…