Skip to content
Merged
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
bpo-1635741: Apply code review
  • Loading branch information
corona10 committed Sep 26, 2020
commit 6fd31dd7444a2f93b6cc74615a0e8544ce924c7e
5 changes: 0 additions & 5 deletions Modules/_bisectmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,16 +234,11 @@ having to sort the list after each insertion. For long lists of items with\n\
expensive comparison operations, this can be an improvement over the more\n\
common approach.\n");

static struct PyModuleDef_Slot _bisectmodule_slots[] = {
{0, NULL}
};

static struct PyModuleDef _bisectmodule = {
PyModuleDef_HEAD_INIT,
.m_name = "_bisect",
.m_doc = module_doc,
.m_methods = bisect_methods,
.m_slots = _bisectmodule_slots,
.m_size = 0
};

Expand Down