Skip to content

Commit d1fae2f

Browse files
authored
ditto
1 parent 2bc90ce commit d1fae2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/typeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5298,7 +5298,7 @@ get_base_by_token_recursive(PyTypeObject *type, void *token)
52985298
for (Py_ssize_t i = 0; i < n; i++) {
52995299
PyTypeObject *base = _PyType_CAST(PyTuple_GET_ITEM(bases, i));
53005300
// The MRO version can slow down if this takes the same approach,
5301-
// which affects the similar loop in PyType_GetModuleByDef().
5301+
// which also affects the same conditions in the functions above.
53025302
if (PyType_GetSlot(base, Py_tp_token) == token) {
53035303
return base;
53045304
}

0 commit comments

Comments
 (0)