diff options
author | Guido van Rossum <guido@python.org> | 1995-01-26 00:39:21 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-26 00:39:21 +0000 |
commit | 6341b900555468cc8027851281416a05b9bf6bc2 (patch) | |
tree | 835c318217fbbaf84e93a822f531b2a0b8240844 /Objects | |
parent | 4c9fa76f440a2ce504cf5f006fdef2ba8de38021 (diff) | |
download | cpython-6341b900555468cc8027851281416a05b9bf6bc2.tar.gz |
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 1fc5d6951d..fd9da23e1a 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) |