diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-04-15 22:51:26 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-04-15 22:51:26 (GMT) |
commit | ffe23957770437ff7ce223c1790b8eb9c7b82800 (patch) | |
tree | 969221e08806820f8d661d7cd74070791144c3b7 /Objects/listobject.c | |
parent | 60eab2b6769dd5e2ac6a35e24afe7e2973ad7b95 (diff) | |
download | cpython-ffe23957770437ff7ce223c1790b8eb9c7b82800.zip cpython-ffe23957770437ff7ce223c1790b8eb9c7b82800.tar.gz cpython-ffe23957770437ff7ce223c1790b8eb9c7b82800.tar.bz2 |
Remove now-unused variables from tp_traverse and tp_clear methods.
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r-- | Objects/listobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c index 78961f3..105df4c 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -2274,7 +2274,6 @@ static int list_traverse(PyListObject *o, visitproc visit, void *arg) { Py_ssize_t i; - PyObject *x; for (i = o->ob_size; --i >= 0; ) Py_VISIT(o->ob_item[i]); |