1. e0a0afd Merge 3.5 (pytime) by Victor Stinner · 9 years ago
  2. c379ade pytime.c: rename pygettimeofday_new() to pygettimeofday() by Victor Stinner · 9 years ago
  3. fad85aa Issue #25558: Use compile-time asserts. by Serhiy Storchaka · 9 years ago
  4. b7a8af2 Fix _PyTime_AsTimevalStruct_impl() on OpenBSD by Victor Stinner · 9 years ago
  5. c29f399 Backout change 28d3bcb1bad6: "Try to fix _PyTime_AsTimevalStruct_impl() on by Victor Stinner · 9 years ago
  6. 2bfed53 Try to fix _PyTime_AsTimevalStruct_impl() on OpenBSD by Victor Stinner · 9 years ago
  7. ec26f83 Issue #25155: Fix _PyTime_Divide() rounding by Victor Stinner · 9 years ago
  8. 9a8b177 Issue #25155: Add _PyTime_AsTimevalTime_t() function by Victor Stinner · 9 years ago
  9. 1e2b688 Issue #25155: Add _PyTime_AsTimevalTime_t() function by Victor Stinner · 9 years ago
  10. 51b9398 pytime: oops, fix typos on Windows by Victor Stinner · 9 years ago
  11. c60542b pytime: add _PyTime_check_mul_overflow() macro to avoid undefined behaviour by Victor Stinner · 9 years ago
  12. ff0ed3e New try to fix test_time.test_AsSecondsDouble() on x86 buildbots. by Victor Stinner · 9 years ago
  13. 1efbeba Try to fix test_time.test_AsSecondsDouble() on "x86 Gentoo Non-Debug with X 3.x" buildbot by Victor Stinner · 9 years ago
  14. 9c72f9b Fix test_time on Windows by Victor Stinner · 9 years ago
  15. 3e2c8d8 test_time: rewrite PyTime API rounding tests by Victor Stinner · 9 years ago
  16. 9ae47df pytime: add _PyTime_Round() helper to factorize code by Victor Stinner · 9 years ago
  17. ce6aa74 Make _PyTime_RoundHalfEven() private again by Victor Stinner · 9 years ago
  18. 7667f58 Issue #23517: fromtimestamp() and utcfromtimestamp() methods of by Victor Stinner · 9 years ago
  19. adfefa5 Issue #23517: Fix implementation of the ROUND_HALF_UP rounding mode in by Victor Stinner · 9 years ago
  20. 5786aef Don't abuse volatile keyword in pytime.c by Victor Stinner · 9 years ago
  21. 29ee674 Enhance _PyTime_AsTimespec() by Victor Stinner · 9 years ago
  22. 5a682c9 Merge 3.5 (monotonic) by Victor Stinner · 9 years ago
  23. 5ad5821 oops, rename pymonotonic_new() to pymonotonic() by Victor Stinner · 9 years ago
  24. c3c616c Issue #24707: Remove assertion in monotonic clock by Victor Stinner · 9 years ago
  25. 2ec5587 Issue #23517: datetime.timedelta constructor now rounds microseconds to nearest by Victor Stinner · 9 years ago
  26. 24b822e Issue #23517: Try to fix test_time on "x86 Ubuntu Shared 3.x" buildbot by Victor Stinner · 9 years ago
  27. 67edcc9 Issue #23517: Fix _PyTime_ObjectToDenominator() by Victor Stinner · 9 years ago
  28. 7447423 Issue #23517: Add "half up" rounding mode to the _PyTime API by Victor Stinner · 9 years ago
  29. bbdda21 Move assertion inside _PyTime_ObjectToTimeval() by Victor Stinner · 9 years ago
  30. 53e137c Refactor pytime.c by Victor Stinner · 9 years ago
  31. 13019fd Issue #22117: Add a new _PyTime_FromSeconds() function by Victor Stinner · 9 years ago
  32. 62d1c70 Issue #22117, issue #23485: Fix _PyTime_AsMilliseconds() and by Victor Stinner · 9 years ago
  33. fa09beb Issue #23485: Add _PyTime_FromMillisecondsObject() function by Victor Stinner · 9 years ago
  34. 45cff0c Issue #22117: Try to fix rounding in conversion from Python double to _PyTime_t by Victor Stinner · 9 years ago
  35. a695f83 Issue #22117: Remove _PyTime_ROUND_DOWN and _PyTime_ROUND_UP rounding methods by Victor Stinner · 9 years ago
  36. bcdd777 Issue #22117: Add _PyTime_ROUND_CEILING rounding method for timestamps by Victor Stinner · 9 years ago
  37. edddf99 Issue #22117: Add assertions to _PyTime_AsTimeval() and _PyTime_AsTimespec() to by Victor Stinner · 9 years ago
  38. ea9c0dd Issue #22117: Fix usage of _PyTime_AsTimeval() by Victor Stinner · 9 years ago
  39. f81f0f9 Issue #22117: Fix rounding and implement _PyTime_ROUND_FLOOR in: by Victor Stinner · 9 years ago
  40. 1bd18ba Issue #22117: Cleanup pytime.c/.h by Victor Stinner · 9 years ago
  41. 09e5cf2 Issue #22117: Use the _PyTime_t API in _datetime.datetime() constructor by Victor Stinner · 9 years ago
  42. cb0c602 Issue #22117: Fix _PyTime_GetMonotonicClock() and by Victor Stinner · 9 years ago
  43. 02937aa Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetime by Victor Stinner · 9 years ago
  44. b3b4544 Issue #22117: Use the _PyTime_t API for time.clock_settime() by Victor Stinner · 9 years ago
  45. c337838 Issue #22117: Use the new _PyTime_t API in the select module by Victor Stinner · 9 years ago
  46. f5faad2 Issue #22117: The thread module uses the new _PyTime_t timestamp API by Victor Stinner · 9 years ago
  47. 95e9cef Issue #22117: Write unit tests for _PyTime_AsTimeval() by Victor Stinner · 9 years ago
  48. 34dc0f4 Issue #22117: The signal modules uses the new _PyTime_t API by Victor Stinner · 9 years ago
  49. a47b881 Issue #22117: time.time() now uses the new _PyTime_t API by Victor Stinner · 9 years ago
  50. 4bfb460 Issue #22117: time.monotonic() now uses the new _PyTime_t API by Victor Stinner · 9 years ago
  51. 992c43f Issue #22117: Fix rounding in _PyTime_FromSecondsObject() by Victor Stinner · 9 years ago
  52. eb35229 Issue #23451, #22117: Python 3.5 now requires Windows Vista or newer, so by Victor Stinner · 9 years ago
  53. cb29f01 Issue #22117: Add a new Python timestamp format _PyTime_t to pytime.h by Victor Stinner · 9 years ago
  54. 580ef13 Cleanup pytime.c: add XXX_TO_YYY constants (ex: SEC_TO_US) by Victor Stinner · 9 years ago
  55. 9a8089b Issue #23646: Enhance precision of time.sleep() and socket timeout when by Victor Stinner · 9 years ago
  56. 3e96f32 Issue #23451: Update pyconfig.h for Windows to require Vista headers and remove unnecessary version checks. by Steve Dower · 9 years ago
  57. 5789cfb Issue #22043: Fix pymonotonic(), use tv_usec=-1 as a marker to skip by Victor Stinner · 10 years ago
  58. ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
  59. 9bb758c Issue #22043: Fix _PyTime_gettimeofday() if HAVE_GETTIMEOFDAY by Victor Stinner · 10 years ago
  60. 0011124 Issue #22043: _PyTime_Init() now checks if the system clock works. by Victor Stinner · 10 years ago
  61. 7efb833 Issue #22287: On UNIX, _PyTime_gettimeofday() now uses by Victor Stinner · 10 years ago
  62. 3c1b379 Issue #20320: select.select() and select.kqueue.control() now round the timeout by Victor Stinner · 10 years ago
  63. 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 12 years ago
  64. 76ad59b Issue #14127: Add ns= parameter to utime, futimes, and lutimes. by Larry Hastings · 12 years ago
  65. 49a69e4 strip is_ prefixes on clock_info fields by Benjamin Peterson · 12 years ago
  66. ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 12 years ago
  67. 6fe20b3 Issue #14127: Add st_{cma}time_ns fields to os.stat() result object. by Larry Hastings · 12 years ago
  68. bd273c1 Issue #14180: Fix an invalid rounding when compiler optimization are enabled by Victor Stinner · 12 years ago
  69. 3a31dd4 Issue #14180: Remove commented code by Victor Stinner · 12 years ago
  70. 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 12 years ago
  71. 643cd68 Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple by Victor Stinner · 12 years ago
  72. 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 12 years ago
  73. ccd5715 PEP 410 by Victor Stinner · 12 years ago
  74. 09225b7 Issue #13845: time.time() now uses GetSystemTimeAsFileTime() instead of ftime() by Victor Stinner · 13 years ago
  75. 6fc4ade Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API by Alexander Belopolsky · 14 years ago