Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update doc
  • Loading branch information
vstinner committed Sep 3, 2024
commit 5ae1b6976332d737d7f9e7881a511cdf92fe1b91
2 changes: 1 addition & 1 deletion 2 Doc/c-api/init_config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1642,7 +1642,7 @@ Error Handling

Get the *config* exit code.

* Set *\*exitcode* and return ``1`` if Python wants to exit.
* Set *\*exitcode* and return ``1`` if *config* has an exit code set.
* Return ``0`` if *config* has no exit code set.

Only the ``Py_InitializeFromInitConfig()`` function can set an exit
Expand Down
5 changes: 3 additions & 2 deletions 5 Doc/whatsnew/3.14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,8 @@ New Features
* Add :c:func:`Py_HashBuffer` to compute and return the hash value of a buffer.
(Contributed by Antoine Pitrou and Victor Stinner in :gh:`122854`.)

* Add functions to get and set the current runtime Python configuration:
* Add functions to get and set the current runtime Python configuration
(:pep:`741`):

* :c:func:`PyConfig_Get`
* :c:func:`PyConfig_GetInt`
Expand All @@ -501,7 +502,7 @@ New Features

(Contributed by Victor Stinner in :gh:`107954`.)

* Add functions to configure the Python initialization:
* Add functions to configure the Python initialization (:pep:`741`):

* :c:func:`PyInitConfig_Create`
* :c:func:`PyInitConfig_Free`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Add functions to configure the Python initialization:
Add functions to configure the Python initialization (:pep:`741`):

* :c:func:`PyInitConfig_Create`
* :c:func:`PyInitConfig_Free`
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.