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 ppperry
Recipients abarry, ppperry
Date 2016-05-29.23:23:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1464564220.21.0.321580163929.issue27157@psf.upfronthosting.co.za>
In-reply-to
Content
This issue only happens when the type in question has a custom metaclass:

>>> class meta(type):pass
>>> class X(type,metaclass=meta):pass
>>> X(X)
[Same unhelpful TypeError]
History
Date User Action Args
2016-05-29 23:23:40ppperrysetrecipients: + ppperry, abarry
2016-05-29 23:23:40ppperrysetmessageid: <1464564220.21.0.321580163929.issue27157@psf.upfronthosting.co.za>
2016-05-29 23:23:40ppperrylinkissue27157 messages
2016-05-29 23:23:40ppperrycreate