Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(3226)

Delta Between Two Patch Sets: Include/pyerrors.h

Issue 5251: contextlib.nested inconsistent with, well, nested with statements due exceptions raised in __enter__
Left Patch Set: Created 2 years, 7 months ago
Right Patch Set: Created 2 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « Include/object.h ('k') | Lib/contextlib.py » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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
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 */
LEFTRIGHT

RSS Feeds Recent Issues | This issue
This is Rietveld cbc36f91f3f7