summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 */
};