summaryrefslogtreecommitdiffstats
path: root/Objects/listobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-07-13 03:58:01 (GMT)
committerGuido van Rossum <guido@python.org>1997-07-13 03:58:01 (GMT)
commit5d8123f34af77b988f7dcefd8cef4423879444d8 (patch)
tree5dbb0ccc1c4a447a58048ff4116a106a73bbe0e4 /Objects/listobject.c
parent74ba24758e4d4b8f0a0dcd5451daee42fe4dc0c3 (diff)
downloadcpython-5d8123f34af77b988f7dcefd8cef4423879444d8.zip
cpython-5d8123f34af77b988f7dcefd8cef4423879444d8.tar.gz
cpython-5d8123f34af77b988f7dcefd8cef4423879444d8.tar.bz2
Reordered list of methods to hopefully put the most frequently used
ones near the front.
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r--Objects/listobject.c6
1 files changed, 3 insertions, 3 deletions
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 @@ listremove(self, args)
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 */
};