diff options
author | Chu <maedaqu@gmail.com> | 2025-04-10 19:57:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-10 17:27:37 +0530 |
commit | 3d83c1ec610ef7c45ce39f9165bc9a06a8c9667c (patch) | |
tree | e4cc1657c94c0da1ef6b468cc3f51330f2e6214c /Python/pylifecycle.c | |
parent | 4d58c8cb247b585051bfbacd79f77aafd18986b7 (diff) | |
download | cpython-3d83c1ec610ef7c45ce39f9165bc9a06a8c9667c.tar.gz cpython-3d83c1ec610ef7c45ce39f9165bc9a06a8c9667c.zip |
Fix a typo in Python/pylifecycle.c (#132350)
Diffstat (limited to 'Python/pylifecycle.c')
-rw-r--r-- | Python/pylifecycle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 934614e73b5..1b9832bff17 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -967,7 +967,7 @@ _Py_PreInitializeFromPyArgv(const PyPreConfig *src_config, const _PyArgv *args) return _PyStatus_OK(); } - /* Note: preinitialized remains 1 on error, it is only set to 0 + /* Note: preinitializing remains 1 on error, it is only set to 0 at exit on success. */ runtime->preinitializing = 1; |