Skip to content
Closed
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
Remove unneeded Py_SET_TYPE on teedataobject type
  • Loading branch information
Erlend E. Aasland committed Jan 2, 2021
commit a2c93496138fe315fda1e0992b80f2097eb29e30
1 change: 0 additions & 1 deletion Modules/itertoolsmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -4505,7 +4505,6 @@ itertoolsmodule_exec(PyObject *m)
ADD_TYPE(m, state->tee_type, &tee_spec);
ADD_TYPE(m, state->teedataobject_type, &teedataobject_spec);
ADD_TYPE(m, state->ziplongest_type, &ziplongest_spec);
Py_SET_TYPE(state->teedataobject_type, &PyType_Type);

return 0;
}
Expand Down