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; }