diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-08-01 21:00:58 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-08-01 21:00:58 (GMT) |
commit | 329e29198dccbbb7f0e7e84c026196dbfc47befa (patch) | |
tree | 9cc4e6beb009dcc1fab584d1327b31dabecb06e1 | |
parent | 8c7433580788fa8421f30c3248605156cc657f0c (diff) | |
download | cpython-329e29198dccbbb7f0e7e84c026196dbfc47befa.zip cpython-329e29198dccbbb7f0e7e84c026196dbfc47befa.tar.gz cpython-329e29198dccbbb7f0e7e84c026196dbfc47befa.tar.bz2 |
Removed decl of unreferenced vrbl.
-rw-r--r-- | Modules/arraymodule.c | 1 |
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; |