From: Jack Jansen Date: Tue, 3 Oct 1995 14:39:44 +0000 (+0000) Subject: Removed unused variable X-Git-Tag: v1.3~78 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ccfc93c2f21205ae8c70ea2ece74be8451197d5;p=thirdparty%2FPython%2Fcpython.git Removed unused variable --- diff --git a/Mac/Modules/macfsmodule.c b/Mac/Modules/macfsmodule.c index 4d41f255788a..69725cccc870 100644 --- a/Mac/Modules/macfsmodule.c +++ b/Mac/Modules/macfsmodule.c @@ -260,8 +260,6 @@ mfsi_getattr(self, name) mfsiobject *self; char *name; { - object *rv; - if ( strcmp(name, "Type") == 0 ) return PyMac_BuildOSType(self->finfo.fdType); else if ( strcmp(name, "Creator") == 0 ) diff --git a/Modules/timemodule.c b/Modules/timemodule.c index ba2b700dfcf8..9d441b2e343b 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -302,7 +302,7 @@ ins(d, name, v) void inittime() { - object *m, *d, *v; + object *m, *d; m = initmodule("time", time_methods); d = getmoduledict(m); #ifdef HAVE_TZNAME