summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-10-03 14:39:44 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1995-10-03 14:39:44 (GMT)
commit8ccfc93c2f21205ae8c70ea2ece74be8451197d5 (patch)
tree92fabbc05c49d37d52661c2147eacd39d8c7334a
parent95ffa23597b1263b371581e4f14650356e81fba2 (diff)
downloadcpython-8ccfc93c2f21205ae8c70ea2ece74be8451197d5.zip
cpython-8ccfc93c2f21205ae8c70ea2ece74be8451197d5.tar.gz
cpython-8ccfc93c2f21205ae8c70ea2ece74be8451197d5.tar.bz2
Removed unused variable
-rw-r--r--Mac/Modules/macfsmodule.c2
-rw-r--r--Modules/timemodule.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/Mac/Modules/macfsmodule.c b/Mac/Modules/macfsmodule.c
index 4d41f25..69725cc 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 ba2b700..9d441b2 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