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.

classification
Title: remove PyAPI_* from function definitions
Type: Stage: resolved
Components: Interpreter Core Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson
Priority: normal Keywords: patch

Created on 2018-09-12 17:22 by benjamin.peterson, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 9218 merged benjamin.peterson, 2018-09-12 17:34
Messages (2)
msg325147 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2018-09-12 17:22
It suffices to have PyAPI_FUNC and PyAPI_DATA on the forward declaration in a header file. We should remove the usages we have in .c files.
msg325169 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2018-09-12 19:06
New changeset e5024517811ee990b770fca0ba7058742d00e032 by Benjamin Peterson in branch 'master':
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
https://github.com/python/cpython/commit/e5024517811ee990b770fca0ba7058742d00e032
History
Date User Action Args
2022-04-11 14:59:05adminsetgithub: 78827
2018-09-12 19:06:46benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg325169

stage: patch review -> resolved
2018-09-12 17:34:28benjamin.petersonsetkeywords: + patch
stage: patch review
pull_requests: + pull_request8650
2018-09-12 17:22:24benjamin.petersoncreate