]> granicus.if.org Git - python/commitdiff
Use METH_VARARGS instead of "1" in list method table.
authorTim Peters <tim.peters@gmail.com>
Wed, 13 Dec 2000 22:35:46 +0000 (22:35 +0000)
committerTim Peters <tim.peters@gmail.com>
Wed, 13 Dec 2000 22:35:46 +0000 (22:35 +0000)
Objects/listobject.c

index b874af9f543cfb72e96e9ebf8ec831177268e882..e5073e1ed5bc322fa36d07e90f269816fff759f4 100644 (file)
@@ -1436,15 +1436,15 @@ static char sort_doc[] =
 "L.sort([cmpfunc]) -- sort *IN PLACE*; if given, cmpfunc(x, y) -> -1, 0, 1";
 
 static PyMethodDef list_methods[] = {
-       {"append",      (PyCFunction)listappend, 1, append_doc},
-       {"insert",      (PyCFunction)listinsert, 1, insert_doc},
-       {"extend",      (PyCFunction)listextend, 1, extend_doc},
-       {"pop",         (PyCFunction)listpop, 1, pop_doc},
-       {"remove",      (PyCFunction)listremove, 1, remove_doc},
-       {"index",       (PyCFunction)listindex, 1, index_doc},
-       {"count",       (PyCFunction)listcount, 1, count_doc},
-       {"reverse",     (PyCFunction)listreverse, 1, reverse_doc},
-       {"sort",        (PyCFunction)listsort, 1, sort_doc},
+       {"append",      (PyCFunction)listappend, METH_VARARGS, append_doc},
+       {"insert",      (PyCFunction)listinsert, METH_VARARGS, insert_doc},
+       {"extend",      (PyCFunction)listextend, METH_VARARGS, extend_doc},
+       {"pop",         (PyCFunction)listpop, METH_VARARGS, pop_doc},
+       {"remove",      (PyCFunction)listremove, METH_VARARGS, remove_doc},
+       {"index",       (PyCFunction)listindex, METH_VARARGS, index_doc},
+       {"count",       (PyCFunction)listcount, METH_VARARGS, count_doc},
+       {"reverse",     (PyCFunction)listreverse, METH_VARARGS, reverse_doc},
+       {"sort",        (PyCFunction)listsort, METH_VARARGS, sort_doc},
        {NULL,          NULL}           /* sentinel */
 };