bpo-37441: Fix wrong PyErr_SetImportErrorSubclass signature in doc (GH-14453)

This commit is contained in:
Hai Shi 2019-07-02 20:56:07 -05:00 committed by Xiang Zhang
parent 477b1b2576
commit aeecf38066
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ an error value).
:mod:`warnings` module and the :option:`-W` option in the command line
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
specifying a subclass of :exc:`ImportError` to raise.