]> granicus.if.org Git - python/commitdiff
Issue #14180: Remove commented code
authorVictor Stinner <vstinner@wyplay.com>
Tue, 13 Mar 2012 12:50:34 +0000 (13:50 +0100)
committerVictor Stinner <vstinner@wyplay.com>
Tue, 13 Mar 2012 12:50:34 +0000 (13:50 +0100)
Python/pytime.c

index 79a1a33616f8cf1a5b5091a14010caa61b35f4f4..75d80e257613ec4c62f2cc13acfd1dc2dbfefb98 100644 (file)
@@ -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);