Message389474
| Author |
gvanrossum |
| Recipients |
JunyiXie, gvanrossum, petr.viktorin, shihai1991, vstinner |
| Date |
2021年03月24日.15:59:37 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1616601577.46.0.0583205154569.issue40601@roundup.psfhosted.org> |
| In-reply-to |
| Content |
FWIW I have an idea that would allow code using e.g. &PyList_Type to continue to work, and even ABI compatible (though only in the main interpreter).
// In some header file
PyAPI_FUNC(PyHeapTypeObject *) PyList_GetType();
#define PyList_Type (PyList_GetType()->ht_type)
For the main interpreter we could make this return the address of PyList_Type. |
|