From: Facundo Batista Date: Sat, 5 Jul 2008 19:19:50 +0000 (+0000) Subject: Issue 3289. Removed two lines that ended doing nothing. X-Git-Tag: v2.6b2~106 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=083902af8f47f6ff08fadaca4191c0c2378214c2;p=thirdparty%2FPython%2Fcpython.git Issue 3289. Removed two lines that ended doing nothing. --- diff --git a/Modules/timemodule.c b/Modules/timemodule.c index c6f68f8e234e..e8de2c5706e2 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);