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 vstinner
Date 2020-12-01.08:55:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1606812935.61.0.224275559553.issue42519@roundup.psfhosted.org>
In-reply-to
Content
Python has around 118 extension modules. Most of them are quite old and still use the old way to write C extensions. I created this issue as a placeholder to modernize the code using my new tool:
https://github.com/pythoncapi/upgrade_pythoncapi

For example, replace PyMem_MALLOC() with PyMem_Malloc(), since PyMem_MALLOC() is a deprecated alias.
History
Date User Action Args
2020-12-01 08:55:35vstinnersetrecipients: + vstinner
2020-12-01 08:55:35vstinnersetmessageid: <1606812935.61.0.224275559553.issue42519@roundup.psfhosted.org>
2020-12-01 08:55:35vstinnerlinkissue42519 messages
2020-12-01 08:55:35vstinnercreate