diff options
author | Brett Cannon <brett@python.org> | 2013-07-04 21:48:16 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-07-04 21:48:16 (GMT) |
commit | 82da8886cc3d8166ab8ef5a257cb04a32ddb1720 (patch) | |
tree | 081cfaea38e07f443861716a38c7bc778431153a /Doc/c-api | |
parent | 45091c0a0c4b759f36a2094d324e9e2022b4106b (diff) | |
download | cpython-82da8886cc3d8166ab8ef5a257cb04a32ddb1720.zip cpython-82da8886cc3d8166ab8ef5a257cb04a32ddb1720.tar.gz cpython-82da8886cc3d8166ab8ef5a257cb04a32ddb1720.tar.bz2 |
Issue #15767: Revert 3a50025f1900 for ModuleNotFoundError
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/exceptions.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst index 25e2a1c..1bdcdd3 100644 --- a/Doc/c-api/exceptions.rst +++ b/Doc/c-api/exceptions.rst @@ -292,13 +292,6 @@ in various ways. There is a separate error indicator for each thread. .. versionadded:: 3.3 -.. c:function:: PyObject* PyErr_SetImportErrorSubclass(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. - - .. versionadded:: 3.4 - .. c:function:: void PyErr_SyntaxLocationEx(char *filename, int lineno, int col_offset) |