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.
1 parent 795d32f commit 365e341Copy full SHA for 365e341
1 file changed
Objects/setobject.c
@@ -2889,7 +2889,7 @@ PyTypeObject PySet_Type = {
2889
0, /* tp_descr_set */
2890
0, /* tp_dictoffset */
2891
set_init, /* tp_init */
2892
- PyType_GenericAlloc, /* tp_alloc */
+ _PyType_AllocNoTrack, /* tp_alloc */
2893
set_new, /* tp_new */
2894
PyObject_GC_Del, /* tp_free */
2895
.tp_vectorcall = set_vectorcall,
@@ -2981,7 +2981,7 @@ PyTypeObject PyFrozenSet_Type = {
2981
2982
2983
0, /* tp_init */
2984
2985
frozenset_new, /* tp_new */
2986
2987
.tp_vectorcall = frozenset_vectorcall,
0 commit comments