diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-06-13 07:50:45 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-06-13 07:50:45 +0000 |
commit | 59683e852906736276df6b8146064666098071b5 (patch) | |
tree | 693dacf60dae3bf6cb3bcbca5465b3f286e43b92 /Modules/arraymodule.c | |
parent | 1c95155bd153e4b9434a42ae434f6f6221c042a2 (diff) | |
download | cpython-git-59683e852906736276df6b8146064666098071b5.tar.gz |
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.
........
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r-- | Modules/arraymodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 5fa525f7c1..da2e9c2ceb 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -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, |