Home
last modified time | relevance | path

Searched refs:_path_isfile (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Lib/importlib/
D_bootstrap_external.py99 def _path_isfile(path): function
428 return source_path if _path_isfile(source_path) else bytecode_path
1007 return _path_isfile(path)
1465 if _path_isfile(full_path):
1476 if _path_isfile(full_path):
/external/python/cpython3/Lib/test/test_import/
D__init__.py1086 with mock.patch('importlib._bootstrap_external._path_isfile') as _path_isfile:
1087 _path_isfile.return_value = True;
1095 with mock.patch('importlib._bootstrap_external._path_isfile') as _path_isfile:
1096 _path_isfile.return_value = False;