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 Vadim Pushtaev, ppperry
Date 2018-07-31.00:17:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532996236.62.0.56676864532.issue34284@psf.upfronthosting.co.za>
In-reply-to
Content
The error I'm expecting here is "cannot create sys.flags objects". Anything else violates the fact that type(*args) is sugar for:

result = type.__new__(type, *args)
if isinstance(result, type):
    result.__init__(*args)

("type" in the above snippet is a variable name, not the actual builtin "type")
History
Date User Action Args
2018-07-31 00:17:16ppperrysetrecipients: + ppperry, Vadim Pushtaev
2018-07-31 00:17:16ppperrysetmessageid: <1532996236.62.0.56676864532.issue34284@psf.upfronthosting.co.za>
2018-07-31 00:17:16ppperrylinkissue34284 messages
2018-07-31 00:17:15ppperrycreate