@@ -57,9 +57,9 @@ static void _PyThreadState_Delete(PyThreadState *tstate, int check_current);
57
57
//-------------------------------------------------
58
58
59
59
/*
60
- The stored thread state is set by PyThraedState_Swap ().
60
+ The stored thread state is set by PyThreadState_Swap ().
61
61
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.
63
63
*/
64
64
65
65
static inline PyThreadState *
@@ -232,7 +232,7 @@ unbind_tstate(PyThreadState *tstate)
232
232
current_tss_clear (runtime );
233
233
}
234
234
235
- // We leave thread_id and native_thraed_id alone
235
+ // We leave thread_id and native_thread_id alone
236
236
// since they can be useful for debugging.
237
237
// Check the `_status` field to know if these values
238
238
// are still valid.
@@ -1140,7 +1140,7 @@ init_threadstate(PyThreadState *tstate,
1140
1140
tstate -> exc_info = & tstate -> exc_state ;
1141
1141
1142
1142
// 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 .
1144
1144
tstate -> gilstate_counter = 1 ;
1145
1145
1146
1146
tstate -> cframe = & tstate -> root_cframe ;
@@ -1220,7 +1220,7 @@ _PyThreadState_Prealloc(PyInterpreterState *interp)
1220
1220
}
1221
1221
1222
1222
// We keep this around for (accidental) stable ABI compatibility.
1223
- // Realisically , no extensions are using it.
1223
+ // Realistically , no extensions are using it.
1224
1224
void
1225
1225
_PyThreadState_Init (PyThreadState * tstate )
1226
1226
{
0 commit comments