Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Python/crossinterp.c
Original file line number Diff line number Diff line change
Expand Up @@ -3185,7 +3185,7 @@ _PyXI_InitTypes(PyInterpreterState *interp)
"failed to initialize the cross-interpreter exception types");
}
// We would initialize heap types here too but that leads to ref leaks.
// Instead, we intialize them in _PyXI_Init().
// Instead, we initialize them in _PyXI_Init().
return _PyStatus_OK();
}

Expand Down
2 changes: 1 addition & 1 deletion Python/qsbr.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ qsbr_allocate(struct _qsbr_shared *shared)
return qsbr;
}

// Initialize (or reintialize) the freelist of QSBR thread states
// Initialize (or reinitialize) the freelist of QSBR thread states
static void
initialize_new_array(struct _qsbr_shared *shared)
{
Expand Down
Loading