Home
last modified time | relevance | path

Searched refs:WindowsPath (Results 1 – 9 of 9) sorted by relevance

/external/python/pyfakefs/pyfakefs/
Dfake_pathlib.py67 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/
Dpathlib.rst28 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.py507 cls = WindowsPath if os.name == 'nt' else PosixPath
851 class WindowsPath(Path, PureWindowsPath): class
/external/python/parse_type/tasks/_vendor/
Dpathlib.py935 cls = WindowsPath if os.name == 'nt' else PosixPath
1278 class WindowsPath(Path, PureWindowsPath): class
/external/python/pyfakefs/pyfakefs/tests/
Dfake_pathlib_test.py79 self.assertTrue(isinstance(path, self.pathlib.WindowsPath))
94 self.pathlib.WindowsPath()
96 self.assertTrue(self.pathlib.WindowsPath())
/external/python/cpython3/Lib/test/test_pathlib/
Dtest_pathlib.py563 expected = pathlib.WindowsPath if os.name == 'nt' else pathlib.PosixPath
1605 cls = pathlib.WindowsPath
/external/clang/unittests/Basic/
DVirtualFileSystemTest.cpp540 TEST_F(InMemoryFileSystemTest, WindowsPath) { in TEST_F() argument
/external/python/pyfakefs/
DCHANGES.md81 * fake `pathlib.PosixPath` and `pathlib.WindowsPath` now behave more like in the real filesystem
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst1257 The case the result of :func:`pathlib.WindowsPath.glob` matches now the case