This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients gangesmaster, pitrou
Date 2008-01-20.18:09:29
SpamBayes Score 0.16264558
Marked as misclassified No
Message-id <1200852571.93.0.735412096679.issue1615@psf.upfronthosting.co.za>
In-reply-to
Content
PyObject_GenericGetAttr is invoked from slot_tp_getattr_hook in
typeobject.c via tp_getattro. The problem is that, when tp_getattro
returns with an AttributeError, there is no way for slot_tp_getattr_hook
to know whether the error was raised by PyObject_GenericGetAttr itself
or by subsequent invocation of user code. Perhaps by adding an attribute
to the raised AttributeError?
History
Date User Action Args
2008-01-20 18:09:32pitrousetspambayes_score: 0.162646 -> 0.16264558
recipients: + pitrou, gangesmaster
2008-01-20 18:09:31pitrousetspambayes_score: 0.162646 -> 0.162646
messageid: <1200852571.93.0.735412096679.issue1615@psf.upfronthosting.co.za>
2008-01-20 18:09:29pitroulinkissue1615 messages
2008-01-20 18:09:29pitroucreate