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 Pierre Chatelier
Recipients Pierre Chatelier, paul.moore, steve.dower, tim.golden, zach.ware
Date 2017-12-19.13:13:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513689198.93.0.213398074469.issue32371@psf.upfronthosting.co.za>
In-reply-to
Content
Delay-loading of the python DLL is impossible when using some C macros.

For instance, PyLong_Check() is OK, but PyBool_Check() or PyFunc_Check() 
will eventually raise a link error.

This is due to the fact that PyBool_Check() directly use the PyBool_Type symbol instead of getting a reference through a function.

For the same reason, Py_False and Py_True are problematic.
History
Date User Action Args
2017-12-19 13:13:18Pierre Chateliersetrecipients: + Pierre Chatelier, paul.moore, tim.golden, zach.ware, steve.dower
2017-12-19 13:13:18Pierre Chateliersetmessageid: <1513689198.93.0.213398074469.issue32371@psf.upfronthosting.co.za>
2017-12-19 13:13:18Pierre Chatelierlinkissue32371 messages
2017-12-19 13:13:18Pierre Chateliercreate