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 gangesmaster
Recipients gangesmaster, pitrou
Date 2008-12-03.12:20:39
SpamBayes Score 0.00060199306
Marked as misclassified No
Message-id <1228306841.59.0.485406172017.issue1615@psf.upfronthosting.co.za>
In-reply-to
Content
here's a short example of the bug

>>> class Foo(object):
...   def __getattr__(self, name): 
...     return 42
...   @property
...   def bacon(self): 
...     return int.lalala
...   @property
...   def eggs(self): 
...     return 17
... 
>>> f = Foo()
>>> f.bacon   # raises an AttributeError, and silently ignores it
42
>>> f.eggs
17
>>> 

are there any news in this front?
History
Date User Action Args
2008-12-03 12:20:41gangesmastersetrecipients: + gangesmaster, pitrou
2008-12-03 12:20:41gangesmastersetmessageid: <1228306841.59.0.485406172017.issue1615@psf.upfronthosting.co.za>
2008-12-03 12:20:40gangesmasterlinkissue1615 messages
2008-12-03 12:20:39gangesmastercreate