From: Victor Stinner Date: Wed, 9 Sep 2015 20:28:09 +0000 (+0200) Subject: Make _PyTime_RoundHalfEven() private again X-Git-Tag: v3.6.0a1~1618 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce6aa749b40d39c8eb82463068cc58f974fbfdf5;p=python Make _PyTime_RoundHalfEven() private again --- diff --git a/Include/pytime.h b/Include/pytime.h index 54a0cc4db8..5de756a761 100644 --- a/Include/pytime.h +++ b/Include/pytime.h @@ -44,11 +44,6 @@ PyAPI_FUNC(PyObject *) _PyLong_FromTime_t( PyAPI_FUNC(time_t) _PyLong_AsTime_t( PyObject *obj); -/* Round to nearest with ties going to nearest even integer - (_PyTime_ROUND_HALF_EVEN) */ -PyAPI_FUNC(double) _PyTime_RoundHalfEven( - double x); - /* Convert a number of seconds, int or float, to time_t. */ PyAPI_FUNC(int) _PyTime_ObjectToTime_t( PyObject *obj, diff --git a/Python/pytime.c b/Python/pytime.c index 9f7ee2d0ed..37dfabbb0a 100644 --- a/Python/pytime.c +++ b/Python/pytime.c @@ -60,7 +60,9 @@ _PyLong_FromTime_t(time_t t) #endif } -double +/* Round to nearest with ties going to nearest even integer + (_PyTime_ROUND_HALF_EVEN) */ +static double _PyTime_RoundHalfEven(double x) { double rounded = round(x);