[Python-checkins] r72707 - python/branches/py3k/Objects/abstract.c

georg.brandl python-checkins at python.org
Sun May 17 10:22:45 CEST 2009


Author: georg.brandl
Date: Sun May 17 10:22:45 2009
New Revision: 72707

Log:
Remove unused variables.

Modified:
   python/branches/py3k/Objects/abstract.c

Modified: python/branches/py3k/Objects/abstract.c
==============================================================================
--- python/branches/py3k/Objects/abstract.c	(original)
+++ python/branches/py3k/Objects/abstract.c	Sun May 17 10:22:45 2009
@@ -2617,9 +2617,8 @@
 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;


More information about the Python-checkins mailing list