summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-11-19 20:26:11 (GMT)
committerGuido van Rossum <guido@python.org>1991-11-19 20:26:11 (GMT)
commit670ceb30d3c7e093c31d9155e5a0548154b17d86 (patch)
tree548148808766702ceb118ef0b82b09fcb8ceade7 /Objects
parent8f96f7734c9dcaa142b6a3961e4e519fcc5a4226 (diff)
downloadcpython-670ceb30d3c7e093c31d9155e5a0548154b17d86.zip
cpython-670ceb30d3c7e093c31d9155e5a0548154b17d86.tar.gz
cpython-670ceb30d3c7e093c31d9155e5a0548154b17d86.tar.bz2
Deleted unused local variable.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/classobject.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c
index ad4f627..5a9e49d 100644
--- a/Objects/classobject.c
+++ b/Objects/classobject.c
@@ -60,7 +60,6 @@ static void
class_dealloc(op)
classobject *op;
{
- int i;
XDECREF(op->cl_bases);
DECREF(op->cl_methods);
XDECREF(op->cl_name);