summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-08-01 21:00:58 (GMT)
committerTim Peters <tim.peters@gmail.com>2000-08-01 21:00:58 (GMT)
commit329e29198dccbbb7f0e7e84c026196dbfc47befa (patch)
tree9cc4e6beb009dcc1fab584d1327b31dabecb06e1 /Modules
parent8c7433580788fa8421f30c3248605156cc657f0c (diff)
downloadcpython-329e29198dccbbb7f0e7e84c026196dbfc47befa.zip
cpython-329e29198dccbbb7f0e7e84c026196dbfc47befa.tar.gz
cpython-329e29198dccbbb7f0e7e84c026196dbfc47befa.tar.bz2
Removed decl of unreferenced vrbl.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/arraymodule.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index 43bafcd..ec1b08d 100644
--- a/Modules/arraymodule.c
+++ b/Modules/arraymodule.c
@@ -794,7 +794,6 @@ array_extend(self, args)
{
int size;
PyObject *bb;
- arrayobject *np;
if (!PyArg_ParseTuple(args, "O:extend", &bb))
return NULL;