summaryrefslogtreecommitdiffstats
path: root/Modules/timemodule.c
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 /Modules/timemodule.c
parent95ffa23597b1263b371581e4f14650356e81fba2 (diff)
downloadcpython-8ccfc93c2f21205ae8c70ea2ece74be8451197d5.zip
cpython-8ccfc93c2f21205ae8c70ea2ece74be8451197d5.tar.gz
cpython-8ccfc93c2f21205ae8c70ea2ece74be8451197d5.tar.bz2
Removed unused variable
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r--Modules/timemodule.c2
1 files changed, 1 insertions, 1 deletions
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