]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-42591: Export missing Py_FrozenMain() symbol (GH-23730)
authorVictor Stinner <vstinner@python.org>
Thu, 10 Dec 2020 17:39:17 +0000 (18:39 +0100)
committerGitHub <noreply@github.com>
Thu, 10 Dec 2020 17:39:17 +0000 (18:39 +0100)
commitb5c7b38f5ebbc84b5b80192db1743d3e1cdcf4c5
treea906b17b3fbb6f78b92b23034908d0b231317766
parent7cf0aad96d1d20f07d7f0e374885f327c2d5ff27
bpo-42591: Export missing Py_FrozenMain() symbol (GH-23730)

Export the Py_FrozenMain() function: fix a Python 3.9.0 regression.
Python 3.9 uses -fvisibility=hidden and the function was not exported
explicitly and so not exported.

Add also Py_FrozenMain to the stable ABI on Windows.
Include/pylifecycle.h
Misc/NEWS.d/next/C API/2020-12-10-10-43-03.bpo-42591.CXNY8G.rst [new file with mode: 0644]
PC/python3dll.c