Victor Stinner 7667f58151 Issue #23517: fromtimestamp() and utcfromtimestamp() methods of
datetime.datetime now round microseconds to nearest with ties going to nearest
even integer (ROUND_HALF_EVEN), as round(float), instead of rounding towards
-Infinity (ROUND_FLOOR).

pytime API: replace _PyTime_ROUND_HALF_UP with _PyTime_ROUND_HALF_EVEN. Fix
also _PyTime_Divide() for negative numbers.

_PyTime_AsTimeval_impl() now reuses _PyTime_Divide() instead of reimplementing
rounding modes.
2015-09-09 01:02:23 +02:00
..
2015-08-24 20:23:27 -07:00
2015-09-03 12:57:11 +02:00
2015-07-27 12:57:21 +02:00
2015-03-18 15:01:44 +01:00
2015-02-14 15:17:47 -05:00
2014-12-31 18:10:13 -06:00
2015-08-24 20:23:27 -07:00
2015-09-04 17:29:57 +02:00

Miscellaneous source files for the main Python shared library