From: Brian Curtin Date: Mon, 16 Apr 2012 23:14:09 +0000 (-0500) Subject: Add versionadded tags to newly added ImportError convenience functions. X-Git-Tag: v3.3.0a3~188 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bded89449914d58262e42a576d294921757d3755;p=python Add versionadded tags to newly added ImportError convenience functions. --- diff --git a/Doc/c-api/exceptions.rst b/Doc/c-api/exceptions.rst index 983901ad7f..d081ff69ff 100644 --- a/Doc/c-api/exceptions.rst +++ b/Doc/c-api/exceptions.rst @@ -235,18 +235,23 @@ in various ways. There is a separate error indicator for each thread. *kwargs* values. If *args* is ``NULL``, an empty :func:`tuple` will be created when *exc* is created via :c:func:`PyObject_Call`. + .. versionadded:: 3.3 + .. c:function:: PyObject* PyErr_SetFromImportErrorWithName(PyObject *msg, PyObject *name) This is a convenience function to raise :exc:`ImportError`. *msg* will be set as the exception's message string, and *name* will be set as the :exc:`ImportError`'s ``name`` attribute. + .. versionadded:: 3.3 + .. c:function:: PyObject* PyErr_SetFromImportErrorWithNameAndPath(PyObject *msg, PyObject *name, PyObject *path) This is a convenience function to raise :exc:`ImportError`. *msg* will be set as the exception's message string. Both *name* and *path* will be set as the :exc:`ImportError`'s respective ``name`` and ``path`` attributes. + .. versionadded:: 3.3 .. c:function:: void PyErr_SyntaxLocationEx(char *filename, int lineno, int col_offset)