bpo-39378: partial of PickleState struct should be traversed. (GH-18046)
This commit is contained in:
parent
114081f8ad
commit
1f577ce363
|
@ -7965,6 +7965,7 @@ pickle_traverse(PyObject *m, visitproc visit, void *arg)
|
|||
Py_VISIT(st->import_mapping_3to2);
|
||||
Py_VISIT(st->codecs_encode);
|
||||
Py_VISIT(st->getattr);
|
||||
Py_VISIT(st->partial);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue