From 497aedd2ff0e438a088108a7c4eb37ff8a14ff64 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 21 Aug 1996 23:46:01 +0000 Subject: Get rid of unused local variable. --- Modules/operator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/operator.c b/Modules/operator.c index 0198482..93566f4 100644 --- a/Modules/operator.c +++ b/Modules/operator.c @@ -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; -- cgit v0.12