commit | 497aedd2ff0e438a088108a7c4eb37ff8a14ff64 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Aug 21 23:46:01 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Aug 21 23:46:01 1996 +0000 |
tree | a9e41972055f5413c1acc0517811f019f51ae575 | |
parent | c417ef8e57be01d0e2cbb255a0e8bd2fff5c4cd3 [diff] |
Get rid of unused local variable.
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 @@ 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;