warnings.h 320 B

12345678910111213141516
  1. #ifndef Py_WARNINGS_H
  2. #define Py_WARNINGS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define PyErr_WarnPy3k(msg, stacklevel) 0
  7. PyAPI_FUNC(int) PyErr_WarnFormat(PyObject *category, Py_ssize_t stack_level,
  8. const char *format, ...);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif /* !Py_WARNINGS_H */