Add missing whitespace in is_running_main comment (#133174)

This commit is contained in:
Nybblista 2025-05-01 06:36:59 +03:00 committed by GitHub
parent ecbc16a915
commit b99d970bcd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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