diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-06-23 17:10:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-23 17:10:32 (GMT) |
commit | 1d33d5378058671bfabb6f4d4b5bfd4726973ff9 (patch) | |
tree | c522809e945151a3525780025b88475695445ad3 /Python | |
parent | 41ad4dfc04c201728ce9fa12b1a96922dd15a368 (diff) | |
download | cpython-1d33d5378058671bfabb6f4d4b5bfd4726973ff9.zip cpython-1d33d5378058671bfabb6f4d4b5bfd4726973ff9.tar.gz cpython-1d33d5378058671bfabb6f4d4b5bfd4726973ff9.tar.bz2 |
gh-106033: Get rid of new occurrences of PyDict_GetItem and PyObject_HasAttr (GH-106034)
These functions are broken by design because they discard any exceptions raised
inside, including MemoryError and KeyboardInterrupt. They should not be
used in new code.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pythonrun.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 2986622..1ec2144 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1134,15 +1134,13 @@ print_exception_notes(struct exception_print_context *ctx, PyObject *value) return 0; } - if (!PyObject_HasAttr(value, &_Py_ID(__notes__))) { - return 0; - } - PyObject *notes = PyObject_GetAttr(value, &_Py_ID(__notes__)); - if (notes == NULL) { - return -1; + PyObject *notes; + int res = _PyObject_LookupAttr(value, &_Py_ID(__notes__), ¬es); + if (res <= 0) { + return res; } if (!PySequence_Check(notes) || PyUnicode_Check(notes) || PyBytes_Check(notes)) { - int res = 0; + res = 0; if (write_indented_margin(ctx, f) < 0) { res = -1; } |