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 LambertDW
Recipients LambertDW, georg.brandl
Date 2008-12-04.04:38:58
SpamBayes Score 1.597164e-05
Marked as misclassified No
Message-id <1228365539.75.0.145851584059.issue4517@psf.upfronthosting.co.za>
In-reply-to
Content
>>> class c:
...  def __getattribute__(self,*args):
...   print('getattribute chimes in')
... 

>>> c()+3
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for +: 'c' and 'int'
History
Date User Action Args
2008-12-04 04:39:00LambertDWsetrecipients: + LambertDW, georg.brandl
2008-12-04 04:38:59LambertDWsetmessageid: <1228365539.75.0.145851584059.issue4517@psf.upfronthosting.co.za>
2008-12-04 04:38:59LambertDWlinkissue4517 messages
2008-12-04 04:38:59LambertDWcreate