Searched refs:WindowsPath (Results 1 – 9 of 9) sorted by relevance
/external/python/pyfakefs/pyfakefs/ |
D | fake_pathlib.py | 67 FakePathlibModule.WindowsPath._flavour = _FakeWindowsFlavour(filesystem) 604 FakePathlibModule.WindowsPath 926 class WindowsPath(FakePath, PureWindowsPath): class in FakePathlibModule 1038 RealPathlibModule.WindowsPath # pytype: disable=attribute-error 1109 class WindowsPath(RealPath, PureWindowsPath): class in RealPathlibModule
|
/external/python/cpython3/Doc/library/ |
D | pathlib.rst | 28 PosixPath subclasses PurePosixPath and Path, and WindowsPath 38 You cannot instantiate a :class:`WindowsPath` when running on Unix, but you 761 :class:`PosixPath` or a :class:`WindowsPath`):: 783 .. class:: WindowsPath(*pathsegments) 788 >>> WindowsPath('c:/', 'Users', 'Ximénez') 789 WindowsPath('c:/Users/Ximénez') 809 >>> WindowsPath('setup.py') 814 UnsupportedOperation: cannot instantiate 'WindowsPath' on your system 841 WindowsPath('c:/windows') 843 WindowsPath('//server/share') [all …]
|
/external/python/cpython3/Lib/pathlib/ |
D | _local.py | 507 cls = WindowsPath if os.name == 'nt' else PosixPath 851 class WindowsPath(Path, PureWindowsPath): class
|
/external/python/parse_type/tasks/_vendor/ |
D | pathlib.py | 935 cls = WindowsPath if os.name == 'nt' else PosixPath 1278 class WindowsPath(Path, PureWindowsPath): class
|
/external/python/pyfakefs/pyfakefs/tests/ |
D | fake_pathlib_test.py | 79 self.assertTrue(isinstance(path, self.pathlib.WindowsPath)) 94 self.pathlib.WindowsPath() 96 self.assertTrue(self.pathlib.WindowsPath())
|
/external/python/cpython3/Lib/test/test_pathlib/ |
D | test_pathlib.py | 563 expected = pathlib.WindowsPath if os.name == 'nt' else pathlib.PosixPath 1605 cls = pathlib.WindowsPath
|
/external/clang/unittests/Basic/ |
D | VirtualFileSystemTest.cpp | 540 TEST_F(InMemoryFileSystemTest, WindowsPath) { in TEST_F() argument
|
/external/python/pyfakefs/ |
D | CHANGES.md | 81 * fake `pathlib.PosixPath` and `pathlib.WindowsPath` now behave more like in the real filesystem
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 1257 The case the result of :func:`pathlib.WindowsPath.glob` matches now the case
|