diff options
author | Guido van Rossum <guido@python.org> | 1995-01-26 00:39:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-26 00:39:21 (GMT) |
commit | e95d92b65e0d524448e3b481d400867c4cb4aa05 (patch) | |
tree | e6aa64871efdb00be0ae313531a695291c5a08f2 /Objects | |
parent | 27e916fd3546955a903bc263dd750cd1839e2fc6 (diff) | |
download | cpython-e95d92b65e0d524448e3b481d400867c4cb4aa05.zip cpython-e95d92b65e0d524448e3b481d400867c4cb4aa05.tar.gz cpython-e95d92b65e0d524448e3b481d400867c4cb4aa05.tar.bz2 |
removed unused vars
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/classobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c index 1fc5d69..fd9da23 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -826,7 +826,6 @@ instancebinop(v, w, opname, ropname, thisfunc) char *ropname; object * (*thisfunc) PROTO((object *, object *)); { - object *v1, *w1; char buf[256]; object *result = NULL; if (halfbinop(v, w, opname, &result, thisfunc, 0) <= 0) |