Searched refs:PureWindowsPath (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Doc/library/ |
D | pathlib.rst | 33 can instantiate :class:`PureWindowsPath`. 102 it creates either a :class:`PurePosixPath` or a :class:`PureWindowsPath`):: 126 >>> PureWindowsPath('c:/Windows', 'd:bar') 127 PureWindowsPath('d:bar') 132 >>> PureWindowsPath('c:/Windows', '/Program Files') 133 PureWindowsPath('c:/Program Files') 166 .. class:: PureWindowsPath(*pathsegments) 171 >>> PureWindowsPath('c:/Program Files/') 172 PureWindowsPath('c:/Program Files') 189 >>> PureWindowsPath('foo') == PureWindowsPath('FOO') [all …]
|
/third_party/python/Tools/msi/ |
D | csv_to_wxs.py | 25 from pathlib import PureWindowsPath 53 target = PureWindowsPath(target)
|
/third_party/python/PC/layout/support/ |
D | appxmanifest.py | 15 from pathlib import Path, PureWindowsPath 336 r = root if root else PureWindowsPath("") 357 for part in PureWindowsPath(key).parts:
|
/third_party/python/Doc/tools/ |
D | susp-ignored.csv | 185 library/pathlib,,:bar,">>> PureWindowsPath('c:/Windows', 'd:bar')" 186 library/pathlib,,:bar,PureWindowsPath('d:bar') 187 library/pathlib,,:Program,>>> PureWindowsPath('c:Program Files/').root 188 library/pathlib,,:Program,>>> PureWindowsPath('c:Program Files/').anchor
|
/third_party/python/Lib/ |
D | pathlib.py | 559 cls = PureWindowsPath if os.name == 'nt' else PurePosixPath 930 class PureWindowsPath(PurePath): class 1451 class WindowsPath(Path, PureWindowsPath):
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0rc1.rst | 418 :meth:`pathlib.PureWindowsPath.is_reserved` now identifies a greater range
|
/third_party/python/Lib/test/ |
D | test_pathlib.py | 778 cls = pathlib.PureWindowsPath 1321 pathlib.PureWindowsPath if os.name == 'nt' else pathlib.PurePosixPath) 1325 q = pathlib.PureWindowsPath('a') 1330 q = pathlib.PureWindowsPath('a')
|