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.py93 def _path_isfile(path): function
366 return source_path if _path_isfile(source_path) else bytecode_path
941 return _path_isfile(path)
1383 if _path_isfile(full_path):
1394 if _path_isfile(full_path):
/external/python/cpython3/Lib/test/test_import/
D__init__.py1011 with mock.patch('importlib._bootstrap_external._path_isfile') as _path_isfile:
1012 _path_isfile.return_value = True;
1020 with mock.patch('importlib._bootstrap_external._path_isfile') as _path_isfile:
1021 _path_isfile.return_value = False;