From: Christian Heimes Date: Wed, 30 Jan 2008 11:46:00 +0000 (+0000) Subject: Removed unused var X-Git-Tag: v2.6a1~339 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=67ac0667f0b74cc98f5cc4d23b39e9574154ec01;p=thirdparty%2FPython%2Fcpython.git Removed unused var --- diff --git a/Python/marshal.c b/Python/marshal.c index facfa1c16707..08e28180c5dc 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -508,7 +508,7 @@ r_object(RFILE *p) { /* NULL is a valid return value, it does not necessarily means that an exception is set. */ - PyObject *v, *v2, *v3; + PyObject *v, *v2; long i, n; int type = r_byte(p); PyObject *retval;