]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Removed unused variable
authorJack Jansen <jack.jansen@cwi.nl>
Tue, 3 Oct 1995 14:39:44 +0000 (14:39 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Tue, 3 Oct 1995 14:39:44 +0000 (14:39 +0000)
Mac/Modules/macfsmodule.c
Modules/timemodule.c

index 4d41f255788ad73516ddd1813690c3da9a7ccd17..69725cccc870c795c91f1aa9c8fc96096d4d905f 100644 (file)
@@ -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 )
index ba2b700dfcf8113bc3a28c06fa19faf410d1c3d1..9d441b2e343b28f87e23e029e092c05e41bc337d 100644 (file)
@@ -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