diff options
author | Guido van Rossum <guido@python.org> | 1996-08-21 23:46:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-21 23:46:01 (GMT) |
commit | 497aedd2ff0e438a088108a7c4eb37ff8a14ff64 (patch) | |
tree | a9e41972055f5413c1acc0517811f019f51ae575 /Modules/operator.c | |
parent | c417ef8e57be01d0e2cbb255a0e8bd2fff5c4cd3 (diff) | |
download | cpython-497aedd2ff0e438a088108a7c4eb37ff8a14ff64.zip cpython-497aedd2ff0e438a088108a7c4eb37ff8a14ff64.tar.gz cpython-497aedd2ff0e438a088108a7c4eb37ff8a14ff64.tar.bz2 |
Get rid of unused local variable.
Diffstat (limited to 'Modules/operator.c')
-rw-r--r-- | Modules/operator.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |