Searched refs:FileNotFoundError (Results 1 – 25 of 67) sorted by relevance
123
/external/python/cpython3/Lib/importlib/ |
D | resources.py | 82 raise FileNotFoundError(f'Package has no location {package!r}') 111 raise FileNotFoundError(message) 145 raise FileNotFoundError(message) 190 except FileNotFoundError: 214 except FileNotFoundError: 230 except (NotADirectoryError, FileNotFoundError): 285 raise FileNotFoundError(path) 291 raise FileNotFoundError
|
D | abc.py | 363 raise FileNotFoundError 375 raise FileNotFoundError 380 raise FileNotFoundError
|
D | _bootstrap_external.py | 933 raise FileNotFoundError 1214 except FileNotFoundError: 1409 except (FileNotFoundError, PermissionError, NotADirectoryError):
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_resource.py | 148 FileNotFoundError, 152 FileNotFoundError, 156 FileNotFoundError, 160 FileNotFoundError,
|
D | test_open.py | 53 FileNotFoundError, 58 FileNotFoundError,
|
D | util.py | 503 package = create_package(file=bytes_data, path=FileNotFoundError()) 516 package = create_package(file=FileNotFoundError(), 517 path=FileNotFoundError()) 518 with self.assertRaises(FileNotFoundError):
|
D | test_abc.py | 328 with self.assertRaises(FileNotFoundError): 332 with self.assertRaises(FileNotFoundError): 336 with self.assertRaises(FileNotFoundError):
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | exceptions.py | 27 class FileNotFoundError(Exception): class 29 super(FileNotFoundError, self).__init__('No file found at %s' % file_path)
|
D | __init__.py | 36 from .exceptions import FileNotFoundError
|
D | cloud_storage_info.py | 82 raise exceptions.FileNotFoundError(dependency_path)
|
/external/python/cpython3/Lib/test/ |
D | test_netrc.py | 136 self.assertRaises(FileNotFoundError, netrc.netrc) 139 self.assertRaises(FileNotFoundError, netrc.netrc,
|
D | test_unicode_file_functions.py | 85 expected_exception=FileNotFoundError, 108 _listdir_failure = NotADirectoryError, FileNotFoundError
|
D | test_exception_hierarchy.py | 105 except FileNotFoundError: 114 except FileNotFoundError:
|
D | exception_hierarchy.txt | 33 | +-- FileNotFoundError
|
D | test_dtrace.py | 82 except (FileNotFoundError, NotADirectoryError, PermissionError) as fnfe:
|
D | test_imghdr.py | 112 with self.assertRaises(FileNotFoundError):
|
D | test_tempfile.py | 278 with self.assertRaises(FileNotFoundError): 289 with self.assertRaises(FileNotFoundError): 346 with self.assertRaises(FileNotFoundError): 354 with self.assertRaises((NotADirectoryError, FileNotFoundError)): 1320 with self.assertRaises(FileNotFoundError) as cm:
|
D | test_os.py | 216 self.assertRaises(FileNotFoundError, os.stat, support.TESTFN) 389 except FileNotFoundError: 1631 except FileNotFoundError: 2245 except FileNotFoundError: 2255 except FileNotFoundError: 3067 except (FileNotFoundError, subprocess.CalledProcessError, 3516 self.assertRaises(FileNotFoundError, entry.inode) 3522 self.assertRaises(FileNotFoundError, entry.stat) 3523 self.assertRaises(FileNotFoundError, entry.stat, follow_symlinks=False) 3535 self.assertRaises(FileNotFoundError, entry.inode) [all …]
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_windows_events.py | 62 with self.assertRaises(FileNotFoundError): 91 with self.assertRaises(FileNotFoundError):
|
/external/python/cpython3/Mac/BuildScript/resources/ |
D | install_certificates.command | 38 except FileNotFoundError:
|
/external/python/cpython3/PCbuild/ |
D | prepare_ssl.py | 136 except FileNotFoundError:
|
/external/python/cpython2/PCbuild/ |
D | prepare_ssl.py | 144 except FileNotFoundError:
|
/external/python/cpython3/Doc/library/ |
D | readline.rst | 305 except FileNotFoundError: 324 except FileNotFoundError: 353 except FileNotFoundError:
|
D | netrc.rst | 25 a :exc:`FileNotFoundError` exception will be raised.
|
/external/python/cpython3/Lib/test/support/ |
D | __init__.py | 420 except (FileNotFoundError, NotADirectoryError): 426 except FileNotFoundError: 432 except FileNotFoundError: 2485 except FileNotFoundError: 2796 except FileNotFoundError:
|
123