]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-96352: Set AttributeError context in _PyObject_GenericGetAttrWithDict (GH-96353)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 8 Sep 2022 11:43:52 +0000 (04:43 -0700)
committerGitHub <noreply@github.com>
Thu, 8 Sep 2022 11:43:52 +0000 (04:43 -0700)
(cherry picked from commit b9634ac776c24bc4d4a57859d884a94cdfe16043)

Co-authored-by: philg314 <110174000+philg314@users.noreply.github.com>
Lib/test/test_exceptions.py
Misc/NEWS.d/next/Core and Builtins/2022-08-28-10-51-19.gh-issue-96352.jTLD2d.rst [new file with mode: 0644]
Objects/object.c

index ff1a02821a58fc246f1d7fbfcdde8efa14683b55..d7133adf058920cecb4e64d9b49d71a7d25aeec7 100644 (file)
@@ -2058,6 +2058,11 @@ class AttributeErrorTests(unittest.TestCase):
         except AttributeError as exc:
             self.assertEqual("bluch", exc.name)
             self.assertEqual(obj, exc.obj)
+        try:
+            object.__getattribute__(obj, "bluch")
+        except AttributeError as exc:
+            self.assertEqual("bluch", exc.name)
+            self.assertEqual(obj, exc.obj)
 
     def test_getattr_has_name_and_obj_for_method(self):
         class A:
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-08-28-10-51-19.gh-issue-96352.jTLD2d.rst b/Misc/NEWS.d/next/Core and Builtins/2022-08-28-10-51-19.gh-issue-96352.jTLD2d.rst
new file mode 100644 (file)
index 0000000..25ab967
--- /dev/null
@@ -0,0 +1,2 @@
+Fix :exc:`AttributeError` missing ``name`` and ``obj`` attributes in
+:meth:`object.__getattribute__`. Patch by Philip Georgi.
index cb7853ca8cfd99ea8b19d5a6ccdf81525a3a7801..6a22f27de0b1c892b7385187ad6d04ce34958ddd 100644 (file)
@@ -1352,6 +1352,8 @@ _PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name,
         PyErr_Format(PyExc_AttributeError,
                      "'%.50s' object has no attribute '%U'",
                      tp->tp_name, name);
+
+        set_attribute_error_context(obj, name);
     }
   done:
     Py_XDECREF(descr);