From: Guido van Rossum Date: Wed, 21 Aug 1996 23:46:01 +0000 (+0000) Subject: Get rid of unused local variable. X-Git-Tag: v1.4b3~53 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=497aedd2ff0e438a088108a7c4eb37ff8a14ff64;p=thirdparty%2FPython%2Fcpython.git Get rid of unused local variable. --- diff --git a/Modules/operator.c b/Modules/operator.c index 01984821b162..93566f49fd18 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;