commit | 1bcb7e9327414d1e8675597b91e4f6e0441315fc | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Feb 28 21:44:20 2001 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Feb 28 21:44:20 2001 +0000 |
tree | 1d22473629d3834c4f889f40c0ee303335db2932 | |
parent | 9e2631897539a95f1413df00847544487fb3b827 [diff] |
Add declaration for PyErr_WarnExplicit().
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 7d8ed84..622af2d 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h
@@ -94,6 +94,8 @@ /* Issue a warning or exception */ extern DL_IMPORT(int) PyErr_Warn(PyObject *, char *); +extern DL_IMPORT(int) PyErr_WarnExplicit(PyObject *, char *, + char *, int, char *, PyObject *); /* In sigcheck.c or signalmodule.c */ extern DL_IMPORT(int) PyErr_CheckSignals(void);