Searched refs:path_b (Results 1 – 2 of 2) sorted by relevance
/external/icu/tools/ |
D | ziputil.py | 29 def ZipCompare(path_a, path_b): argument 32 if not os.path.isfile(path_a) or not os.path.isfile(path_b): 38 with ZipFile(path_b, 'r') as zip_b:
|
/external/python/cpython3/Lib/test/ |
D | test_pathlib.py | 1385 def assertSame(self, path_a, path_b): argument 1386 self.assertTrue(os.path.samefile(str(path_a), str(path_b)), 1388 (path_a, path_b)) 1395 def assertEqualNormCase(self, path_a, path_b): argument 1396 self.assertEqual(os.path.normcase(path_a), os.path.normcase(path_b))
|