Skip to content

Commit 37f15a5

Browse files
authored
Fix typos in pystate.c file (#101348)
1 parent 8d18d1f commit 37f15a5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Python/pystate.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ static void _PyThreadState_Delete(PyThreadState *tstate, int check_current);
5757
//-------------------------------------------------
5858

5959
/*
60-
The stored thread state is set by PyThraedState_Swap().
60+
The stored thread state is set by PyThreadState_Swap().
6161
62-
For each of these functions, the GIL mus be held by the current thread.
62+
For each of these functions, the GIL must be held by the current thread.
6363
*/
6464

6565
static inline PyThreadState *
@@ -232,7 +232,7 @@ unbind_tstate(PyThreadState *tstate)
232232
current_tss_clear(runtime);
233233
}
234234

235-
// We leave thread_id and native_thraed_id alone
235+
// We leave thread_id and native_thread_id alone
236236
// since they can be useful for debugging.
237237
// Check the `_status` field to know if these values
238238
// are still valid.
@@ -1140,7 +1140,7 @@ init_threadstate(PyThreadState *tstate,
11401140
tstate->exc_info = &tstate->exc_state;
11411141

11421142
// PyGILState_Release must not try to delete this thread state.
1143-
// This is cleared when PyGILState_Ensure() creates the thread sate.
1143+
// This is cleared when PyGILState_Ensure() creates the thread state.
11441144
tstate->gilstate_counter = 1;
11451145

11461146
tstate->cframe = &tstate->root_cframe;
@@ -1220,7 +1220,7 @@ _PyThreadState_Prealloc(PyInterpreterState *interp)
12201220
}
12211221

12221222
// We keep this around for (accidental) stable ABI compatibility.
1223-
// Realisically, no extensions are using it.
1223+
// Realistically, no extensions are using it.
12241224
void
12251225
_PyThreadState_Init(PyThreadState *tstate)
12261226
{

0 commit comments

Comments
 (0)