Kaydet (Commit) 03ab4d35 authored tarafından Eli Bendersky's avatar Eli Bendersky

Make indentation consistent and remove dead commented-out code.

üst 5051ca88
...@@ -2122,7 +2122,7 @@ static PyMethodDef array_methods[] = { ...@@ -2122,7 +2122,7 @@ static PyMethodDef array_methods[] = {
copy_doc}, copy_doc},
{"count", (PyCFunction)array_count, METH_O, {"count", (PyCFunction)array_count, METH_O,
count_doc}, count_doc},
{"__deepcopy__",(PyCFunction)array_copy, METH_O, {"__deepcopy__", (PyCFunction)array_copy, METH_O,
copy_doc}, copy_doc},
{"extend", (PyCFunction)array_extend, METH_O, {"extend", (PyCFunction)array_extend, METH_O,
extend_doc}, extend_doc},
...@@ -2148,8 +2148,6 @@ static PyMethodDef array_methods[] = { ...@@ -2148,8 +2148,6 @@ static PyMethodDef array_methods[] = {
remove_doc}, remove_doc},
{"reverse", (PyCFunction)array_reverse, METH_NOARGS, {"reverse", (PyCFunction)array_reverse, METH_NOARGS,
reverse_doc}, reverse_doc},
/* {"sort", (PyCFunction)array_sort, METH_VARARGS,
sort_doc},*/
{"tofile", (PyCFunction)array_tofile, METH_O, {"tofile", (PyCFunction)array_tofile, METH_O,
tofile_doc}, tofile_doc},
{"tolist", (PyCFunction)array_tolist, METH_NOARGS, {"tolist", (PyCFunction)array_tolist, METH_NOARGS,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment