]> granicus.if.org Git - python/commitdiff
Remove unused variables.
authorGeorg Brandl <georg@python.org>
Sun, 17 May 2009 08:22:45 +0000 (08:22 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 17 May 2009 08:22:45 +0000 (08:22 +0000)
Objects/abstract.c

index ae536a78d16dc3ca762156ac314adae5b40ea2e7..56e5b717a6182c8e4ae804747c2ad3568137c769 100644 (file)
@@ -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;