From dcfe8e44c3f4bbfa0752fe1130c1561b94a62a94 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 17 May 2009 08:22:45 +0000 Subject: [PATCH] Remove unused variables. --- Objects/abstract.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Objects/abstract.c b/Objects/abstract.c index ae536a78d1..56e5b717a6 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -2617,9 +2617,8 @@ int PyObject_IsSubclass(PyObject *derived, PyObject *cls) { static PyObject *name = NULL; - PyObject *t, *v, *tb; PyObject *checker; - + if (PyTuple_Check(cls)) { Py_ssize_t i; Py_ssize_t n; -- 2.40.0