Skip to content
Merged
Prev Previous commit
Next Next commit
reword
  • Loading branch information
neonene authored Oct 9, 2024
commit b83b63a08b0ad1cb1c7f38d62a182243971e9578
2 changes: 1 addition & 1 deletion Objects/typeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -5323,7 +5323,7 @@ PyType_GetBaseByToken(PyTypeObject *type, void *token, PyTypeObject **result)
base = get_base_by_token_recursive(lookup_tp_bases(type), token);
if (base != NULL) {
// Copying the given type can cause a slowdown,
// unlike this overwriting.
// unlike overwriting below.
type = base;
goto found;
}
Expand Down