10000 bpo-40077: Convert itertools types to heap types by erlend-aasland · Pull Request #24065 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-40077: Convert itertools types to heap types #24065

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
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
0