https://github.com/python/cpython/commit/b99d970bcde68543a213a0c2f484b932e77636d1
commit: b99d970bcde68543a213a0c2f484b932e77636d1
branch: main
author: Nybblista <170842536+nybbli...@users.noreply.github.com>
committer: AA-Turner <9087854+aa-tur...@users.noreply.github.com>
date: 2025-05-01T04:36:59+01:00
summary:

Add missing whitespace in `is_running_main` comment (#133174)

files:
M Modules/_interpretersmodule.c

diff --git a/Modules/_interpretersmodule.c b/Modules/_interpretersmodule.c
index b22bd29a507f6b..77678f7c126005 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;
     }

_______________________________________________
Python-checkins mailing list -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: arch...@mail-archive.com

Reply via email to