blob: 0818d7a117eefc9af5611de5c5d0e3f9b480224c [file] [log] [blame]
Brett Cannone9746892008-04-12 23:44:07 +00001#ifndef Py_WARNINGS_H
2#define Py_WARNINGS_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7PyAPI_FUNC(void) _PyWarnings_Init(void);
8
9PyAPI_FUNC(int) PyErr_WarnEx(PyObject *, const char *, Py_ssize_t);
10PyAPI_FUNC(int) PyErr_WarnExplicit(PyObject *, const char *, const char *, int,
11 const char *, PyObject *);
Benjamin Petersondacde0d2008-05-26 17:43:53 +000012
Benjamin Petersonb17ad2d2008-05-26 19:37:11 +000013#define PyErr_WarnPy3k(msg, stacklevel) \
14 (Py_Py3kWarningFlag ? PyErr_WarnEx(PyExc_DeprecationWarning, msg, stacklevel) : 0)
Brett Cannone9746892008-04-12 23:44:07 +000015
16/* DEPRECATED: Use PyErr_WarnEx() instead. */
17#define PyErr_Warn(category, msg) PyErr_WarnEx(category, msg, 1)
18
19#ifdef __cplusplus
20}
21#endif
Christian Heimes0a4f8952008-04-13 09:30:17 +000022#endif /* !Py_WARNINGS_H */
23