From 3a31dd407a966ff5265cab0f52b3bc9fa044f1aa Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 13 Mar 2012 13:50:34 +0100 Subject: [PATCH] Issue #14180: Remove commented code --- Python/pytime.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/Python/pytime.c b/Python/pytime.c index 79a1a33616..75d80e2576 100644 --- a/Python/pytime.c +++ b/Python/pytime.c @@ -137,8 +137,6 @@ _PyTime_ObjectToTime_t(PyObject *obj, time_t *sec) if (PyFloat_Check(obj)) { double d, intpart, err; - /*whent = _PyTime_DoubleToTimet(d);*/ - d = PyFloat_AsDouble(obj); (void)modf(d, &intpart); -- 2.40.0