| 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 typedef struct { | 9 typedef struct { |
| 10 PyObject_HEAD | 10 PyObject_HEAD |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 #include <stdarg.h> | 321 #include <stdarg.h> |
| 322 PyAPI_FUNC(int) PyOS_snprintf(char *str, size_t size, const char *format, ...) | 322 PyAPI_FUNC(int) PyOS_snprintf(char *str, size_t size, const char *format, ...) |
| 323 Py_GCC_ATTRIBUTE((format(printf, 3, 4))); | 323 Py_GCC_ATTRIBUTE((format(printf, 3, 4))); |
| 324 PyAPI_FUNC(int) PyOS_vsnprintf(char *str, size_t size, const char *format, va_l
ist va) | 324 PyAPI_FUNC(int) PyOS_vsnprintf(char *str, size_t size, const char *format, va_l
ist va) |
| 325 Py_GCC_ATTRIBUTE((format(printf, 3, 0))); | 325 Py_GCC_ATTRIBUTE((format(printf, 3, 0))); |
| 326 | 326 |
| 327 #ifdef __cplusplus | 327 #ifdef __cplusplus |
| 328 } | 328 } |
| 329 #endif | 329 #endif |
| 330 #endif /* !Py_ERRORS_H */ | 330 #endif /* !Py_ERRORS_H */ |
| LEFT | RIGHT |