Staging
v0.5.1
https://github.com/python/cpython
Revision d6c5f749d86b2676ba393c1f1e2a4c407ea5fd36 authored by Éric Araujo on 16 December 2010, 00:07:01 UTC, committed by Éric Araujo on 16 December 2010, 00:07:01 UTC
1 parent 4fef555
Raw File
Tip revision: d6c5f749d86b2676ba393c1f1e2a4c407ea5fd36 authored by Éric Araujo on 16 December 2010, 00:07:01 UTC
No need to generate a link for something that’s just above.
Tip revision: d6c5f74
warnings.h
#ifndef Py_WARNINGS_H
#define Py_WARNINGS_H
#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
PyAPI_FUNC(PyObject*) _PyWarnings_Init(void);
#endif

PyAPI_FUNC(int) PyErr_WarnEx(PyObject *, const char *, Py_ssize_t);
PyAPI_FUNC(int) PyErr_WarnFormat(PyObject *, Py_ssize_t, const char *, ...);
PyAPI_FUNC(int) PyErr_WarnExplicit(PyObject *, const char *, const char *, int,
                                    const char *, PyObject *);

/* DEPRECATED: Use PyErr_WarnEx() instead. */
#ifndef Py_LIMITED_API
#define PyErr_Warn(category, msg) PyErr_WarnEx(category, msg, 1)
#endif

#ifdef __cplusplus
}
#endif
#endif /* !Py_WARNINGS_H */

back to top