Issue 3289. Removed two lines that ended doing nothing.

This commit is contained in:
Facundo Batista 2008-07-05 19:19:50 +00:00
parent 1ecce468f8
commit 083902af8f
1 changed files with 0 additions and 2 deletions

View File

@ -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);