Skip to content

Commit b99d970

Browse files
authored
Add missing whitespace in is_running_main comment (#133174)
1 parent ecbc16a commit b99d970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_interpretersmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ is_running_main(PyInterpreterState *interp)
6363
// using this module for the main interpreter is doing so through
6464
// the main program. Thus we can make this extra check. This benefits
6565
// applications that embed Python but haven't been updated yet
66-
// to call_PyInterpreterState_SetRunningMain().
66+
// to call _PyInterpreterState_SetRunningMain().
6767
if (_Py_IsMainInterpreter(interp)) {
6868
return 1;
6969
}

0 commit comments

Comments
 (0)