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 BTaskaya
Recipients BTaskaya, jbasko, rhettinger, stutzbach
Date 2019-01-28.13:54:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1548683690.6.0.607989164826.issue35815@roundup.psfhosted.org>
In-reply-to
Content
I debugged object.__new__ and i saw the subclass you are trying to initalize doesn't have proper signature of abstract classes (it returns 0 from flags & Py_TPFLAGS_IS_ABSTRACT)

However it has __abstractmethods__ entry. Currently i'm trying to find why it is happening.

Type Name: Derived
Flags: 284161 
Abstract: 1048576 
Flags & Abstract: 0
History
Date User Action Args
2020-03-31 23:42:17BTaskayaunlinkissue35815 messages
2019-01-28 13:54:51BTaskayasetrecipients: + BTaskaya, rhettinger, stutzbach, jbasko
2019-01-28 13:54:50BTaskayasetmessageid: <1548683690.6.0.607989164826.issue35815@roundup.psfhosted.org>
2019-01-28 13:54:50BTaskayalinkissue35815 messages
2019-01-28 13:54:50BTaskayacreate