gh-107954, PEP 741: Add PyInitConfig_AddModule() function (#123668)

This commit is contained in:
Victor Stinner 2024-09-04 13:41:57 +02:00 committed by GitHub
parent 7d2c2f24da
commit 0d6b6e34a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 121 additions and 0 deletions

View file

@ -12,6 +12,7 @@ Add functions to configure the Python initialization (:pep:`741`):
* :c:func:`PyInitConfig_SetInt`
* :c:func:`PyInitConfig_SetStr`
* :c:func:`PyInitConfig_SetStrList`
* :c:func:`PyInitConfig_AddModule`
* :c:func:`Py_InitializeFromInitConfig`
Patch by Victor Stinner.