[Python-checkins] cpython: Issue #14180: Remove commented code

victor.stinner python-checkins at python.org
Tue Mar 13 13:50:39 CET 2012


http://hg.python.org/cpython/rev/ed73006bac42
changeset:   75591:ed73006bac42
user:        Victor Stinner <vstinner at wyplay.com>
date:        Tue Mar 13 13:50:34 2012 +0100
summary:
  Issue #14180: Remove commented code

files:
  Python/pytime.c |  2 --
  1 files changed, 0 insertions(+), 2 deletions(-)


diff --git a/Python/pytime.c b/Python/pytime.c
--- a/Python/pytime.c
+++ b/Python/pytime.c
@@ -137,8 +137,6 @@
     if (PyFloat_Check(obj)) {
         double d, intpart, err;
 
-        /*whent = _PyTime_DoubleToTimet(d);*/
-
         d = PyFloat_AsDouble(obj);
         (void)modf(d, &intpart);
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list