Make more symbols static.

This commit is contained in:
Martin v. Löwis 2008-06-13 07:47:47 +00:00
parent e1f6646d68
commit 111c180674
6 changed files with 13 additions and 13 deletions

View file

@ -1546,7 +1546,7 @@ static PyGetSetDef array_getsets [] = {
{NULL}
};
PyMethodDef array_methods[] = {
static PyMethodDef array_methods[] = {
{"append", (PyCFunction)array_append, METH_O,
append_doc},
{"buffer_info", (PyCFunction)array_buffer_info, METH_NOARGS,