summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-05-17 08:22:45 (GMT)
committerGeorg Brandl <georg@python.org>2009-05-17 08:22:45 (GMT)
commitdcfe8e44c3f4bbfa0752fe1130c1561b94a62a94 (patch)
tree81087799208a108b861103eb84906923f0a66269
parent7f8ed815dbf02c34b5d5c1fc66c43717a051b184 (diff)
downloadcpython-dcfe8e44c3f4bbfa0752fe1130c1561b94a62a94.zip
cpython-dcfe8e44c3f4bbfa0752fe1130c1561b94a62a94.tar.gz
cpython-dcfe8e44c3f4bbfa0752fe1130c1561b94a62a94.tar.bz2
Remove unused variables.
-rw-r--r--Objects/abstract.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index ae536a7..56e5b71 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;