Home
last modified time | relevance | path

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

/third_party/python/Lib/importlib/
D_bootstrap_external.py159 def _path_isfile(path): function
507 return source_path if _path_isfile(source_path) else bytecode_path
1554 if _path_isfile(full_path):
1568 if _path_isfile(full_path):
/third_party/python/Lib/test/test_import/
D__init__.py1088 with mock.patch('importlib._bootstrap_external._path_isfile') as _path_isfile:
1089 _path_isfile.return_value = True
1097 with mock.patch('importlib._bootstrap_external._path_isfile') as _path_isfile:
1098 _path_isfile.return_value = False