[Python-checkins] python/dist/src/Objects listobject.c,2.117,2.118
gvanrossum@users.sourceforge.net
gvanrossum@users.sourceforge.net
Tue, 16 Jul 2002 08:56:54 -0700
Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv6189
Modified Files:
listobject.c
Log Message:
Make list_iter() really static.
Index: listobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/listobject.c,v
retrieving revision 2.117
retrieving revision 2.118
diff -C2 -d -r2.117 -r2.118
*** listobject.c 15 Jul 2002 05:16:13 -0000 2.117
--- listobject.c 16 Jul 2002 15:56:52 -0000 2.118
***************
*** 2022,2026 ****
PyTypeObject PyListIter_Type;
! PyObject *
list_iter(PyObject *seq)
{
--- 2022,2026 ----
PyTypeObject PyListIter_Type;
! static PyObject *
list_iter(PyObject *seq)
{