From b99d970bcde68543a213a0c2f484b932e77636d1 Mon Sep 17 00:00:00 2001 From: Nybblista <170842536+nybblista@users.noreply.github.com> Date: Thu, 1 May 2025 06:36:59 +0300 Subject: [PATCH] Add missing whitespace in `is_running_main` comment (#133174) --- Modules/_interpretersmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_interpretersmodule.c b/Modules/_interpretersmodule.c index b22bd29a507..77678f7c126 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; }