From: Nybblista <170842536+nybblista@users.noreply.github.com> Date: Thu, 1 May 2025 03:36:59 +0000 (+0300) Subject: Add missing whitespace in `is_running_main` comment (#133174) X-Git-Tag: v3.14.0b1~152 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b99d970bcde68543a213a0c2f484b932e77636d1;p=thirdparty%2FPython%2Fcpython.git Add missing whitespace in `is_running_main` comment (#133174) --- diff --git a/Modules/_interpretersmodule.c b/Modules/_interpretersmodule.c index b22bd29a507f..77678f7c1260 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; }