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 vstinner
Recipients Mark.Shannon, vstinner
Date 2021-10-11.09:50:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1633945803.57.0.940910379519.issue45431@roundup.psfhosted.org>
In-reply-to
Content
#include <Python.h> should only define names which start with "Py" (Py, _Py, PY, _PY), but it now defines a structure called "CFrame" in Include/cpython/pystate.h.

We should either make the whole PyThreadState structure private (move it to the internal C API), or rename CFrame (to PyCFrame?).
History
Date User Action Args
2021-10-11 09:50:03vstinnersetrecipients: + vstinner, Mark.Shannon
2021-10-11 09:50:03vstinnersetmessageid: <1633945803.57.0.940910379519.issue45431@roundup.psfhosted.org>
2021-10-11 09:50:03vstinnerlinkissue45431 messages
2021-10-11 09:50:03vstinnercreate