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 ionelmc
Recipients Claudiu.Popa, belopolsky, christian.heimes, ethan.furman, ionelmc, jedwards, llllllllll
Date 2015-04-17.23:31:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429313466.67.0.394324923285.issue23990@psf.upfronthosting.co.za>
In-reply-to
Content
Actually it does address it, as AttributeError is very special:

>>> a.__call__
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 4, in __call__
AttributeError: go away
>>> hasattr(a, '__call__')
False
History
Date User Action Args
2015-04-17 23:31:06ionelmcsetrecipients: + ionelmc, belopolsky, christian.heimes, Claudiu.Popa, ethan.furman, llllllllll, jedwards
2015-04-17 23:31:06ionelmcsetmessageid: <1429313466.67.0.394324923285.issue23990@psf.upfronthosting.co.za>
2015-04-17 23:31:06ionelmclinkissue23990 messages
2015-04-17 23:31:06ionelmccreate