From d235b75e4429d83a7725c92264507d85a8f46efd Mon Sep 17 00:00:00 2001 From: nybblista <170842536+nybblista@users.noreply.github.com> Date: Wed, 30 Apr 2025 00:47:28 +0300 Subject: [PATCH] Fix typo at _interpretersmodule.c file --- Modules/_interpretersmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_interpretersmodule.c b/Modules/_interpretersmodule.c index b22bd29a507f6b1..77678f7c1260053 100644 --- a/Modules/_interpretersmodule.c +++ b/Modules/_interpretersmodule.c @@ -63,7 +63,7 @@ is_running_main(PyInterpreterState *interp) // using this module for the main interpreter is doing so through // the main program. Thus we can make this extra check. This benefits // applications that embed Python but haven't been updated yet - // to call_PyInterpreterState_SetRunningMain(). + // to call _PyInterpreterState_SetRunningMain(). if (_Py_IsMainInterpreter(interp)) { return 1; }