diff options
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r-- | Modules/timemodule.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 1954d0c..d2817fb 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -641,8 +641,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); |