From: Georg Brandl Date: Sun, 17 May 2009 08:22:45 +0000 (+0000) Subject: Remove unused variables. X-Git-Tag: v3.1rc1~127 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dcfe8e44c3f4bbfa0752fe1130c1561b94a62a94;p=python Remove unused variables. --- 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;