diff options
author | RUANG (Roy James) <longjinyii@outlook.com> | 2024-10-15 09:21:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-15 09:21:16 (GMT) |
commit | 546dddca43a2a69dbe33d230e9e540636b403270 (patch) | |
tree | ba8eaa55c4969c4a733f53967f37473480929b41 /Doc | |
parent | 92af191a6a5f266b71373f5374ca0c9c522d62d9 (diff) | |
download | cpython-546dddca43a2a69dbe33d230e9e540636b403270.zip cpython-546dddca43a2a69dbe33d230e9e540636b403270.tar.gz cpython-546dddca43a2a69dbe33d230e9e540636b403270.tar.bz2 |
gh-125234: Make PyInitConfig_Free(NULL) a no-op (#125266)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/init_config.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/c-api/init_config.rst b/Doc/c-api/init_config.rst index 6f8962a..66e845d 100644 --- a/Doc/c-api/init_config.rst +++ b/Doc/c-api/init_config.rst @@ -1621,6 +1621,8 @@ Create Config Free memory of the initialization configuration *config*. + If *config* is ``NULL``, no operation is performed. + Error Handling -------------- |