Reordered list of methods to hopefully put the most frequently used
ones near the front.
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 588053c..02fdda6 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -1015,12 +1015,12 @@
static PyMethodDef list_methods[] = {
{"append", (PyCFunction)listappend},
- {"count", (PyCFunction)listcount},
- {"index", (PyCFunction)listindex},
{"insert", (PyCFunction)listinsert},
- {"sort", (PyCFunction)listsort, 0},
{"remove", (PyCFunction)listremove},
+ {"index", (PyCFunction)listindex},
+ {"count", (PyCFunction)listcount},
{"reverse", (PyCFunction)listreverse},
+ {"sort", (PyCFunction)listsort, 0},
{NULL, NULL} /* sentinel */
};