Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 1 | #ifndef Py_WARNINGS_H |
| 2 | #define Py_WARNINGS_H |
| 3 | #ifdef __cplusplus |
| 4 | extern "C" { |
| 5 | #endif |
| 6 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 7 | #ifndef Py_LIMITED_API |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 8 | PyAPI_FUNC(PyObject*) _PyWarnings_Init(void); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 9 | #endif |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 10 | |
Victor Stinner | 555a24f | 2010-12-27 01:49:26 +0000 | [diff] [blame] | 11 | PyAPI_FUNC(int) PyErr_WarnEx( |
| 12 | PyObject *category, |
| 13 | const char *message, /* UTF-8 encoded string */ |
| 14 | Py_ssize_t stack_level); |
| 15 | PyAPI_FUNC(int) PyErr_WarnFormat( |
| 16 | PyObject *category, |
| 17 | Py_ssize_t stack_level, |
| 18 | const char *format, /* ASCII-encoded string */ |
| 19 | ...); |
| 20 | PyAPI_FUNC(int) PyErr_WarnExplicit( |
| 21 | PyObject *category, |
| 22 | const char *message, /* UTF-8 encoded string */ |
| 23 | const char *filename, /* UTF-8 encoded string */ |
| 24 | int lineno, |
| 25 | const char *module, /* UTF-8 encoded string */ |
| 26 | PyObject *registry); |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 27 | |
| 28 | /* DEPRECATED: Use PyErr_WarnEx() instead. */ |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 29 | #ifndef Py_LIMITED_API |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 30 | #define PyErr_Warn(category, msg) PyErr_WarnEx(category, msg, 1) |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 31 | #endif |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 32 | |
| 33 | #ifdef __cplusplus |
| 34 | } |
| 35 | #endif |
| 36 | #endif /* !Py_WARNINGS_H */ |
| 37 | |