]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Get rid of unused local variable.
authorGuido van Rossum <guido@python.org>
Wed, 21 Aug 1996 23:46:01 +0000 (23:46 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 21 Aug 1996 23:46:01 +0000 (23:46 +0000)
Modules/operator.c

index 01984821b16209443dfd539f47261a0e2b629726..93566f49fd18f0c19de765f87f48e6dc123e61a5 100644 (file)
@@ -169,7 +169,7 @@ static PyObject*
 op_delslice(s,a)
      PyObject *s, *a;
 {
-  PyObject *a1, *a4;
+  PyObject *a1;
   long a2,a3;
 
   if(! PyArg_ParseTuple(a,"Oii",&a1,&a2,&a3)) return NULL;