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 ncoghlan
Recipients Trundle, benjamin.peterson, exarkun, ezio.melotti, georg.brandl, joe.amenta, milko.krachounov, ncoghlan, pitrou
Date 2009-12-25.07:11:53
SpamBayes Score 0.018671663
Marked as misclassified No
Message-id <1261725115.49.0.690857317885.issue7006@psf.upfronthosting.co.za>
In-reply-to
Content
That isn't a semantic change, it is exactly the same semantics as
callable() in 2.x:

>>> class Spam(object):
...   def __call__(self): pass
...
>>> callable(Spam())
True
>>> del Spam.__call__
>>> callable(Spam())
False
History
Date User Action Args
2009-12-25 07:11:55ncoghlansetrecipients: + ncoghlan, georg.brandl, exarkun, pitrou, benjamin.peterson, ezio.melotti, Trundle, joe.amenta, milko.krachounov
2009-12-25 07:11:55ncoghlansetmessageid: <1261725115.49.0.690857317885.issue7006@psf.upfronthosting.co.za>
2009-12-25 07:11:53ncoghlanlinkissue7006 messages
2009-12-25 07:11:53ncoghlancreate