From 083902af8f47f6ff08fadaca4191c0c2378214c2 Mon Sep 17 00:00:00 2001 From: Facundo Batista Date: Sat, 5 Jul 2008 19:19:50 +0000 Subject: Issue 3289. Removed two lines that ended doing nothing. --- Modules/timemodule.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/Modules/timemodule.c b/Modules/timemodule.c index c6f68f8..e8de2c5 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -600,8 +600,6 @@ time_mktime(PyObject *self, PyObject *tup) { struct tm buf; time_t tt; - tt = time(&tt); - buf = *localtime(&tt); if (!gettmarg(tup, &buf)) return NULL; tt = mktime(&buf); -- cgit v0.12