Skip to content
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions Objects/typeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -3516,8 +3516,8 @@ mro_check(PyTypeObject *type, PyObject *mro)
if (!is_subtype_with_mro(lookup_tp_mro(solid), solid, solid_base(base))) {
PyErr_Format(
PyExc_TypeError,
"%N.mro() returned base with unsuitable layout ('%.500s')",
type, base->tp_name);
"%N.mro() returned base with unsuitable layout ('%T')",
type, base);
return -1;
}
}
Expand Down
Loading