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: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcfe8e44c3f4bbfa0752fe1130c1561b94a62a94;p=thirdparty%2FPython%2Fcpython.git Remove unused variables. --- diff --git a/Objects/abstract.c b/Objects/abstract.c index ae536a78d16d..56e5b717a618 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;