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 steve.dower
Recipients loewis, serhiy.storchaka, steve.dower, tim.golden, zach.ware
Date 2016-12-21.01:41:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1482284520.58.0.241370361647.issue23903@psf.upfronthosting.co.za>
In-reply-to
Content
I just ran into this because PyModule_AddFunctions() was added to the stable ABI in 3.5, but was not added to python3.dll.

This is blatantly a compilation error. We _need_ python3.def and the stable ABI to be in sync.

I've rerun the script against Python 3.6 and attached it. I'm also going to post to python-dev to attract some attention.

I think at this stage we ought to update python3.dll to include everything that could be used from the headers. Unfortunately, that means extensions could potentially break if built on 3.6.1 and run against 3.6.0, but it's inevitable that there will be some breakage and this way it's only temporary.
History
Date User Action Args
2016-12-21 01:42:00steve.dowersetrecipients: + steve.dower, loewis, tim.golden, zach.ware, serhiy.storchaka
2016-12-21 01:42:00steve.dowersetmessageid: <1482284520.58.0.241370361647.issue23903@psf.upfronthosting.co.za>
2016-12-21 01:42:00steve.dowerlinkissue23903 messages
2016-12-21 01:41:59steve.dowercreate