We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tp_traverse
1 parent 5c79e13 commit 119c19eCopy full SHA for 119c19e
Modules/_hashopenssl.c
@@ -1176,7 +1176,8 @@ PyDoc_STRVAR(HASHXOFobject_type_doc,
1176
"digest_size -- number of bytes in this hashes output");
1177
1178
static PyType_Slot HASHXOFobject_type_slots[] = {
1179
- /* tp_dealloc and tp_traverse are inherited from _hashlib.HASH */
+ /* tp_dealloc is inherited from _hashlib.HASH */
1180
+ {Py_tp_traverse, _hashlib_HASH_traverse},
1181
{Py_tp_doc, (char *)HASHXOFobject_type_doc},
1182
{Py_tp_methods, HASHXOFobject_methods},
1183
{Py_tp_getset, HASHXOFobject_getsets},
0 commit comments