Get rid of unused local variable.

This commit is contained in:
Guido van Rossum 1996-08-21 23:46:01 +00:00
parent c417ef8e57
commit 497aedd2ff

View 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;