]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add missing whitespace in `is_running_main` comment (#133174)
authorNybblista <170842536+nybblista@users.noreply.github.com>
Thu, 1 May 2025 03:36:59 +0000 (06:36 +0300)
committerGitHub <noreply@github.com>
Thu, 1 May 2025 03:36:59 +0000 (04:36 +0100)
Modules/_interpretersmodule.c

index b22bd29a507f6b1bf5e2bf48590f968cd4948bed..77678f7c1260053e7bf5dcf6866f45208ac69261 100644 (file)
@@ -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;
     }