diff options
author | Guido van Rossum <guido@python.org> | 2002-07-16 15:56:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-07-16 15:56:52 (GMT) |
commit | 5086e49a6e2c740e5710a46ba4871b9144d564ea (patch) | |
tree | 600fe93bc15ce913455d8f6df0ebf313ac42eafe /Objects/listobject.c | |
parent | daa192104d2cab44df2603cf8c46446e88a57007 (diff) | |
download | cpython-5086e49a6e2c740e5710a46ba4871b9144d564ea.zip cpython-5086e49a6e2c740e5710a46ba4871b9144d564ea.tar.gz cpython-5086e49a6e2c740e5710a46ba4871b9144d564ea.tar.bz2 |
Make list_iter() really static.
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r-- | Objects/listobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c index 4825e9b..12a9272 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -2021,7 +2021,7 @@ typedef struct { PyTypeObject PyListIter_Type; -PyObject * +static PyObject * list_iter(PyObject *seq) { listiterobject *it; |