MCPcopy Index your code
hub / github.com/python/cpython / PureWindowsPath

Class PureWindowsPath

Lib/pathlib/__init__.py:604–611  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

602
603
604class 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.

Callers 2

_get_registry_entriesFunction · 0.90
mainFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…