[issue46383] _zoneinfo module_free has invalid function signature

2022-01-22 Thread miss-islington
miss-islington added the comment: New changeset 3e7d06a1fa2102723314552b37410d11fefa928a by Kumar Aditya in branch '3.9': [3.9] bpo-46383: Fix signature of zoneinfo module_free function (GH-3… (GH-30611) https://github.com/python/cpython/commit/3e7d06a1fa2102723314552b37410d11fefa928a

[issue46383] _zoneinfo module_free has invalid function signature

2022-01-22 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue46383] _zoneinfo module_free has invalid function signature

2022-01-17 Thread STINNER Victor
STINNER Victor added the comment: New changeset 7a822c92782ffda8fa32a4b30a95b9de7cc1b8e6 by Miss Islington (bot) in branch '3.10': bpo-46383: Fix signature of zoneinfo module_free function (GH-30607) (GH-30610) https://github.com/python/cpython/commit/7a822c92782ffda8fa32a4b30a95b9de7cc1b8e6

[issue46383] _zoneinfo module_free has invalid function signature

2022-01-15 Thread Kumar Aditya
Change by Kumar Aditya : -- nosy: +kumaraditya303 nosy_count: 3.0 -> 4.0 pull_requests: +28813 pull_request: https://github.com/python/cpython/pull/30611 ___ Python tracker

[issue46383] _zoneinfo module_free has invalid function signature

2022-01-15 Thread Christian Heimes
Christian Heimes added the comment: New changeset cfbde65df318eea243706ff876e5ef834c085e5f by Christian Heimes in branch 'main': bpo-46383: Fix signature of zoneinfo module_free function (GH-30607) https://github.com/python/cpython/commit/cfbde65df318eea243706ff876e5ef834c085e5f --

[issue46383] _zoneinfo module_free has invalid function signature

2022-01-15 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +28812 pull_request: https://github.com/python/cpython/pull/30610 ___ Python tracker

[issue46383] _zoneinfo module_free has invalid function signature

2022-01-14 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +28807 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30607 ___ Python tracker

[issue46383] _zoneinfo module_free has invalid function signature

2022-01-14 Thread Christian Heimes
New submission from Christian Heimes : The zoneinfo C extension has the "freefunc m_free" function with signature "static void module_free(void)". The signature of freefunc is "void (*freefunc)(void *)". It takes a void * argument, but module_free() does not. The signature mismatch is not a