diff options
author | Victor Stinner <vstinner@python.org> | 2024-04-18 13:20:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-18 13:20:38 (GMT) |
commit | 340a02b590681d4753eef0ff63037d0ecb512271 (patch) | |
tree | 09300e1018a937cdbe5f4b7be2ccd3dc25402044 /Misc/NEWS.d/next/C API | |
parent | 0a0756c5edd8c32783a39ef00c47fe4a54deecbc (diff) | |
download | cpython-340a02b590681d4753eef0ff63037d0ecb512271.zip cpython-340a02b590681d4753eef0ff63037d0ecb512271.tar.gz cpython-340a02b590681d4753eef0ff63037d0ecb512271.tar.bz2 |
gh-117987: Restore several functions removed in Python 3.13 alpha 1 (GH-117993)
Restore these functions removed in Python 3.13 alpha 1:
* Py_SetPythonHome()
* Py_SetProgramName()
* PySys_SetArgvEx()
* PySys_SetArgv()
Diffstat (limited to 'Misc/NEWS.d/next/C API')
-rw-r--r-- | Misc/NEWS.d/next/C API/2024-04-17-16-48-17.gh-issue-117987.zsvNL1.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2024-04-17-16-48-17.gh-issue-117987.zsvNL1.rst b/Misc/NEWS.d/next/C API/2024-04-17-16-48-17.gh-issue-117987.zsvNL1.rst new file mode 100644 index 0000000..b4cca94 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2024-04-17-16-48-17.gh-issue-117987.zsvNL1.rst @@ -0,0 +1,8 @@ +Restore functions removed in Python 3.13 alpha 1: + +* :c:func:`Py_SetPythonHome` +* :c:func:`Py_SetProgramName` +* :c:func:`PySys_SetArgvEx` +* :c:func:`PySys_SetArgv` + +Patch by Victor Stinner. |