diff options
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/exceptions.tex | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Doc/api/exceptions.tex b/Doc/api/exceptions.tex index 01c0aaf..8676963 100644 --- a/Doc/api/exceptions.tex +++ b/Doc/api/exceptions.tex @@ -296,16 +296,6 @@ error indicator for each thread. command line documentation. There is no C API for warning control. \end{cfuncdesc} -\begin{cfuncdesc}{int}{PyErr_Warn}{PyObject *category, char *message} - Issue a warning message. The \var{category} argument is a warning - category (see below) or \NULL; the \var{message} argument is a - message string. The warning will appear to be issued from the function - calling \cfunction{PyErr_Warn()}, equivalent to calling - \cfunction{PyErr_WarnEx()} with a \var{stacklevel} of 1. - - Deprecated; use \cfunction{PyErr_WarnEx()} instead. -\end{cfuncdesc} - \begin{cfuncdesc}{int}{PyErr_WarnExplicit}{PyObject *category, const char *message, const char *filename, int lineno, const char *module, PyObject *registry} |