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 NeilGirdhar, docs@python, ncoghlan
Date 2016-10-16.07:49:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476604191.94.0.290809803734.issue28437@psf.upfronthosting.co.za>
In-reply-to
Content
The "used directly as the metaclass" is a reference to https://docs.python.org/3/reference/datamodel.html#creating-the-class-object further down, and specifically the "metaclass(name, bases, namespace, **kwds)" call. It's not saying Python has a way to bypass that instantiation process.

As a result, your code is consistently getting to that step just fine, but *that call* is throwing an exception.

Hence my comment earlier that there's a case to be made that we should be better indicating where we were in the type creation process when the metaclass resolution failed.
History
Date User Action Args
2016-10-16 07:49:51ncoghlansetrecipients: + ncoghlan, docs@python, NeilGirdhar
2016-10-16 07:49:51ncoghlansetmessageid: <1476604191.94.0.290809803734.issue28437@psf.upfronthosting.co.za>
2016-10-16 07:49:51ncoghlanlinkissue28437 messages
2016-10-16 07:49:51ncoghlancreate