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
Prev Previous commit
Next Next commit
reverting suggestion
  • Loading branch information
picnixz committed Feb 22, 2025
commit 73ef441d1aa27262f25d037eba853648304ebaae
2 changes: 1 addition & 1 deletion Objects/typeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -1469,7 +1469,7 @@ _PyType_GetFullyQualifiedName(PyTypeObject *type, char sep)
return PyUnicode_FromString(type->tp_name);
}

PyObject *qualname = Py_NewRef(((PyHeapTypeObject *)type)->ht_qualname);
PyObject *qualname = type_qualname((PyObject *)type, NULL);
Comment thread
picnixz marked this conversation as resolved.
if (qualname == NULL) {
return NULL;
}
Expand Down