From: Chu Date: Thu, 10 Apr 2025 11:57:37 +0000 (+0800) Subject: Fix a typo in Python/pylifecycle.c (#132350) X-Git-Tag: v3.14.0b1~542 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d83c1ec610ef7c45ce39f9165bc9a06a8c9667c;p=thirdparty%2FPython%2Fcpython.git Fix a typo in Python/pylifecycle.c (#132350) --- diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 934614e73b56..1b9832bff17b 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;