summaryrefslogtreecommitdiffstats
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
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.
-rw-r--r--Objects/dictobject.c8
-rw-r--r--Objects/listobject.c6
2 files changed, 7 insertions, 7 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 43d962c..018762b 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -963,13 +963,13 @@ dict_clear(mp, args)
}
static PyMethodDef mapp_methods[] = {
- {"update", (PyCFunction)dict_update},
- {"clear", (PyCFunction)dict_clear},
- {"copy", (PyCFunction)dict_copy},
{"has_key", (PyCFunction)dict_has_key},
- {"items", (PyCFunction)dict_items},
{"keys", (PyCFunction)dict_keys},
+ {"items", (PyCFunction)dict_items},
{"values", (PyCFunction)dict_values},
+ {"update", (PyCFunction)dict_update},
+ {"clear", (PyCFunction)dict_clear},
+ {"copy", (PyCFunction)dict_copy},
{NULL, NULL} /* sentinel */
};
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 */
};