diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2016-09-07 23:56:15 (GMT) |
---|---|---|
committer | Eric Snow <ericsnowcurrently@gmail.com> | 2016-09-07 23:56:15 (GMT) |
commit | 46f97b85a8ce9ae67b6e4bc32e94f7827df7bab7 (patch) | |
tree | e814eb2b2365001ddbc119372da70eed52f2aeb5 /Python/import.c | |
parent | c943265ba56e7ce7e2fe79fdecfc6670e10e5467 (diff) | |
download | cpython-46f97b85a8ce9ae67b6e4bc32e94f7827df7bab7.zip cpython-46f97b85a8ce9ae67b6e4bc32e94f7827df7bab7.tar.gz cpython-46f97b85a8ce9ae67b6e4bc32e94f7827df7bab7.tar.bz2 |
Issue #15767: Use ModuleNotFoundError.
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index 3bac5b8..c780fe2 100644 --- a/Python/import.c +++ b/Python/import.c @@ -1539,7 +1539,8 @@ PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals, PyObject *msg = PyUnicode_FromFormat("import of %R halted; " "None in sys.modules", abs_name); if (msg != NULL) { - PyErr_SetImportError(msg, abs_name, NULL); + PyErr_SetImportErrorSubclass(PyExc_ModuleNotFoundError, msg, + abs_name, NULL); Py_DECREF(msg); } mod = NULL; |