LEFT | RIGHT |
1 #ifndef Py_ERRORS_H | 1 #ifndef Py_ERRORS_H |
2 #define Py_ERRORS_H | 2 #define Py_ERRORS_H |
3 #ifdef __cplusplus | 3 #ifdef __cplusplus |
4 extern "C" { | 4 extern "C" { |
5 #endif | 5 #endif |
6 | 6 |
7 /* Error objects */ | 7 /* Error objects */ |
8 | 8 |
9 #ifndef Py_LIMITED_API | 9 #ifndef Py_LIMITED_API |
10 /* PyException_HEAD defines the initial segment of every exception class. */ | 10 /* PyException_HEAD defines the initial segment of every exception class. */ |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 #include <stdarg.h> | 424 #include <stdarg.h> |
425 PyAPI_FUNC(int) PyOS_snprintf(char *str, size_t size, const char *format, ...) | 425 PyAPI_FUNC(int) PyOS_snprintf(char *str, size_t size, const char *format, ...) |
426 Py_GCC_ATTRIBUTE((format(printf, 3, 4))); | 426 Py_GCC_ATTRIBUTE((format(printf, 3, 4))); |
427 PyAPI_FUNC(int) PyOS_vsnprintf(char *str, size_t size, const char *format, va_l
ist va) | 427 PyAPI_FUNC(int) PyOS_vsnprintf(char *str, size_t size, const char *format, va_l
ist va) |
428 Py_GCC_ATTRIBUTE((format(printf, 3, 0))); | 428 Py_GCC_ATTRIBUTE((format(printf, 3, 0))); |
429 | 429 |
430 #ifdef __cplusplus | 430 #ifdef __cplusplus |
431 } | 431 } |
432 #endif | 432 #endif |
433 #endif /* !Py_ERRORS_H */ | 433 #endif /* !Py_ERRORS_H */ |
LEFT | RIGHT |