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 Micah.Friesen
Recipients BreamoreBoy, Micah.Friesen, benjamin.peterson, daniel.urban, gangesmaster, pitrou, thomaslee
Date 2012-04-17.16:16:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334679390.83.0.779447817516.issue1615@psf.upfronthosting.co.za>
In-reply-to
Content
I ran into this recently, as well, and have lost probably a day's worth of time debugging it. I submit that this is not a feature - I can't imagine a real-world scenario where you actually want to write debuggable code where a descriptor defers to __getattr__ (except perhaps for exception handling, in which case some re-factoring is in order), particularly because descriptors are effectively mix-ins and can be used on multiple classes.

I worked around this by writing an ancestor descriptor that catches AttributeErrors and re-raises them as a user-defined exception.
History
Date User Action Args
2012-04-17 16:16:30Micah.Friesensetrecipients: + Micah.Friesen, pitrou, gangesmaster, thomaslee, benjamin.peterson, daniel.urban, BreamoreBoy
2012-04-17 16:16:30Micah.Friesensetmessageid: <1334679390.83.0.779447817516.issue1615@psf.upfronthosting.co.za>
2012-04-17 16:16:30Micah.Friesenlinkissue1615 messages
2012-04-17 16:16:30Micah.Friesencreate