Merged revisions 64226 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r64226 | martin.v.loewis | 2008-06-13 09:47:47 +0200 (Fr, 13 Jun 2008) | 2 lines

  Make more symbols static.
........
This commit is contained in:
Martin v. Löwis 2008-06-13 07:50:45 +00:00
parent 1c95155bd1
commit 59683e8529
6 changed files with 13 additions and 13 deletions

View file

@ -1493,7 +1493,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,