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 erik.bray
Recipients erik.bray
Date 2018-07-24.17:00:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532451616.3.0.56676864532.issue34211@psf.upfronthosting.co.za>
In-reply-to
Content
This is essentially the same as issue21124, but introduced more recently with the addition of the _abc_data_type in the _abc module.

The workaround is simply to use PyVarObject_HEAD_INIT(NULL, 0) instead of PyVarObject_HEAD_INIT(&PyType_Type, 0); PyType_Ready should take care of the rest.

P.S. I'm trying to get going again on the project of adding an AppVeyor build, and eventually a buildbot for Cygwin.  My previous attempt was doomed because I wanted to fix all failing tests on Cygwin *first*.  This time I am going for a more "instant gratification" approach of just skipping the tests that fail (for now) so that I can at least catch new regressions, and then gradually re-enabled skipped tests as I can find fixes for them.

However, for that to happen we at least need a minimal build to work.
History
Date User Action Args
2018-07-24 17:00:16erik.braysetrecipients: + erik.bray
2018-07-24 17:00:16erik.braysetmessageid: <1532451616.3.0.56676864532.issue34211@psf.upfronthosting.co.za>
2018-07-24 17:00:16erik.braylinkissue34211 messages
2018-07-24 17:00:16erik.braycreate