[issue42519] [C API] Upgrade the C API in extension modules

2020-12-16 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue42519] [C API] Upgrade the C API in extension modules

2020-12-01 Thread hai shi
Change by hai shi : -- nosy: +shihai1991 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42519] [C API] Upgrade the C API in extension modules

2020-12-01 Thread STINNER Victor
STINNER Victor added the comment: New changeset 32bd68c839adb7b42af12366ab0892303115d1d1 by Victor Stinner in branch 'master': bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587) https://github.com/python/cpython/commit/32bd68c839adb7b42af12366ab0892303115d1d1 --

[issue42519] [C API] Upgrade the C API in extension modules

2020-12-01 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +22461 pull_request: https://github.com/python/cpython/pull/23587 ___ Python tracker ___

[issue42519] [C API] Upgrade the C API in extension modules

2020-12-01 Thread STINNER Victor
STINNER Victor added the comment: New changeset 00d7abd7ef588fc4ff0571c8579ab4aba8ada1c0 by Victor Stinner in branch 'master': bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) https://github.com/python/cpython/commit/00d7abd7ef588fc4ff0571c8579ab4aba8ada1c0 --

[issue42519] [C API] Upgrade the C API in extension modules

2020-12-01 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +22460 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23586 ___ Python tracker ___

[issue42519] [C API] Upgrade the C API in extension modules

2020-12-01 Thread STINNER Victor
New submission from STINNER Victor : 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