Issue 3289. Removed two lines that ended doing nothing.
This commit is contained in:
parent
1ecce468f8
commit
083902af8f
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue