diff options
author | Victor Stinner <vstinner@python.org> | 2023-08-22 14:28:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 14:28:20 (GMT) |
commit | 6541fe4ad7b96ab96ee5c596b60814a93346dd27 (patch) | |
tree | 1ee22f64291b37e7a1b04bcdfcf37f3dc5f18404 /Python/traceback.c | |
parent | a541e01537cc07b326cc37cc29412b816bc2b4fc (diff) | |
download | cpython-6541fe4ad7b96ab96ee5c596b60814a93346dd27.zip cpython-6541fe4ad7b96ab96ee5c596b60814a93346dd27.tar.gz cpython-6541fe4ad7b96ab96ee5c596b60814a93346dd27.tar.bz2 |
Ignore _Py_write_noraise() result: cast to (void) (#108291)
Code using _Py_write_noraise() usually cannot report. Ignore errors
is the least surprising behavior for users.
Diffstat (limited to 'Python/traceback.c')
-rw-r--r-- | Python/traceback.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Python/traceback.c b/Python/traceback.c index bddb876..61ace38 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -25,7 +25,7 @@ #define OFF(x) offsetof(PyTracebackObject, x) -#define PUTS(fd, str) _Py_write_noraise(fd, str, (int)strlen(str)) +#define PUTS(fd, str) (void)_Py_write_noraise(fd, str, (int)strlen(str)) #define MAX_STRING_LENGTH 500 #define MAX_FRAME_DEPTH 100 #define MAX_NTHREADS 100 @@ -1047,7 +1047,7 @@ _Py_DumpDecimal(int fd, size_t value) value /= 10; } while (value); - _Py_write_noraise(fd, ptr, end - ptr); + (void)_Py_write_noraise(fd, ptr, end - ptr); } /* Format an integer as hexadecimal with width digits into fd file descriptor. @@ -1072,7 +1072,7 @@ _Py_DumpHexadecimal(int fd, uintptr_t value, Py_ssize_t width) value >>= 4; } while ((end - ptr) < width || value); - _Py_write_noraise(fd, ptr, end - ptr); + (void)_Py_write_noraise(fd, ptr, end - ptr); } void @@ -1125,7 +1125,7 @@ _Py_DumpASCII(int fd, PyObject *text) } if (!need_escape) { // The string can be written with a single write() syscall - _Py_write_noraise(fd, str, size); + (void)_Py_write_noraise(fd, str, size); goto done; } } @@ -1135,7 +1135,7 @@ _Py_DumpASCII(int fd, PyObject *text) if (' ' <= ch && ch <= 126) { /* printable ASCII character */ char c = (char)ch; - _Py_write_noraise(fd, &c, 1); + (void)_Py_write_noraise(fd, &c, 1); } else if (ch <= 0xff) { PUTS(fd, "\\x"); |