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 /Include | |
parent | c943265ba56e7ce7e2fe79fdecfc6670e10e5467 (diff) | |
download | cpython-46f97b85a8ce9ae67b6e4bc32e94f7827df7bab7.zip cpython-46f97b85a8ce9ae67b6e4bc32e94f7827df7bab7.tar.gz cpython-46f97b85a8ce9ae67b6e4bc32e94f7827df7bab7.tar.bz2 |
Issue #15767: Use ModuleNotFoundError.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyerrors.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 6bc3ca7..03cee3d 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -284,6 +284,9 @@ PyAPI_FUNC(PyObject *) PyErr_SetExcFromWindowsErr(PyObject *, int); PyAPI_FUNC(PyObject *) PyErr_SetExcWithArgsKwargs(PyObject *, PyObject *, PyObject *); + +PyAPI_FUNC(PyObject *) PyErr_SetImportErrorSubclass(PyObject *, PyObject *, + PyObject *, PyObject *); PyAPI_FUNC(PyObject *) PyErr_SetImportError(PyObject *, PyObject *, PyObject *); |