]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-45316: Move private functions to internal C API (GH-31579)
authorVictor Stinner <vstinner@python.org>
Fri, 25 Feb 2022 15:07:14 +0000 (16:07 +0100)
committerGitHub <noreply@github.com>
Fri, 25 Feb 2022 15:07:14 +0000 (16:07 +0100)
commit8f2a337a80a283c66e1a4252839792fa229d2763
tree0497a8e2db3ceeb7e5a4960a38dcf2c7310bfdd1
parent26aba295a9c1bcb0812fe44bd7e68ddd1d8a6828
bpo-45316: Move private functions to internal C API (GH-31579)

Move the unexported private functions to the internal C API:

* pycore_frame.h: _PyFrame_New_NoTrack()
* pycore_function.h: _PyFunction_GetVersionForCurrentState()
* pycore_genobject.h: _PyAsyncGenValueWrapperNew()
* pycore_genobject.h: _PyCoro_GetAwaitableIter()
* pycore_genobject.h: _PyGen_yf()
Include/cpython/frameobject.h
Include/cpython/funcobject.h
Include/cpython/genobject.h
Include/internal/pycore_frame.h
Include/internal/pycore_function.h
Include/internal/pycore_genobject.h
Python/specialize.c