bpo-37441: Fix wrong PyErr_SetImportErrorSubclass signature in doc (GH-14453)
(cherry picked from commit aeecf38066
)
Co-authored-by: Hai Shi <shihai1992@gmail.com>
This commit is contained in:
parent
2e4411b3c5
commit
6323ac1dd4
|
@ -317,7 +317,7 @@ an error value).
|
||||||
:mod:`warnings` module and the :option:`-W` option in the command line
|
:mod:`warnings` module and the :option:`-W` option in the command line
|
||||||
documentation. There is no C API for warning control.
|
documentation. There is no C API for warning control.
|
||||||
|
|
||||||
.. c:function:: PyObject* PyErr_SetImportErrorSubclass(PyObject *msg, PyObject *name, PyObject *path)
|
.. c:function:: PyObject* PyErr_SetImportErrorSubclass(PyObject *exception, PyObject *msg, PyObject *name, PyObject *path)
|
||||||
|
|
||||||
Much like :c:func:`PyErr_SetImportError` but this function allows for
|
Much like :c:func:`PyErr_SetImportError` but this function allows for
|
||||||
specifying a subclass of :exc:`ImportError` to raise.
|
specifying a subclass of :exc:`ImportError` to raise.
|
||||||
|
|
Loading…
Reference in New Issue