1. 717a32b Fix typo in test_time.py by Victor Stinner · 8 years ago
  2. c60542b pytime: add _PyTime_check_mul_overflow() macro to avoid undefined behaviour by Victor Stinner · 9 years ago
  3. 350b518 Fix test_time on platform with 32-bit time_t type by Victor Stinner · 9 years ago
  4. 4237d34 Fix test_time on platform with 32-bit time_t type by Victor Stinner · 9 years ago
  5. 9c72f9b Fix test_time on Windows by Victor Stinner · 9 years ago
  6. 3e2c8d8 test_time: rewrite PyTime API rounding tests by Victor Stinner · 9 years ago
  7. 7667f58 Issue #23517: fromtimestamp() and utcfromtimestamp() methods of by Victor Stinner · 9 years ago
  8. 45fd951 Merge from 3.5 by Steve Dower · 9 years ago
  9. e5b5895 Issue #24917: time_strftime() buffer over-read. by Steve Dower · 9 years ago
  10. 62b2462 Backing out 09b62202d9b7; the tests fail on Linux, and it needs a re-think. by Larry Hastings · 9 years ago
  11. 643d6d3 Issue #24917: Backed out changeset 09b62202d9b7 by Steve Dower · 9 years ago
  12. dcaf4cc Issue #24917: Backed out changeset 09b62202d9b7 by Steve Dower · 9 years ago
  13. 74a7b8f Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch. by Steve Dower · 9 years ago
  14. 373602f Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch. by Steve Dower · 9 years ago
  15. adfefa5 Issue #23517: Fix implementation of the ROUND_HALF_UP rounding mode in by Victor Stinner · 9 years ago
  16. 110f9e3 test_time: add tests on HALF_UP rounding mode for _PyTime_ObjectToTime_t() and by Victor Stinner · 9 years ago
  17. 8aad8d6 Issue #23517: test_time, skip a test checking a corner case on floating point by Victor Stinner · 9 years ago
  18. ead144c test_time: add more tests on HALF_UP rounding mode by Victor Stinner · 9 years ago
  19. acea9f6 Issue #23517: Reintroduce unit tests for the old PyTime API since it's still by Victor Stinner · 9 years ago
  20. 7447423 Issue #23517: Add "half up" rounding mode to the _PyTime API by Victor Stinner · 9 years ago
  21. 7aec764 Closes #24244: Removes invalid test from test_time by Steve Dower · 9 years ago
  22. 13019fd Issue #22117: Add a new _PyTime_FromSeconds() function by Victor Stinner · 9 years ago
  23. 62d1c70 Issue #22117, issue #23485: Fix _PyTime_AsMilliseconds() and by Victor Stinner · 9 years ago
  24. a695f83 Issue #22117: Remove _PyTime_ROUND_DOWN and _PyTime_ROUND_UP rounding methods by Victor Stinner · 9 years ago
  25. bcdd777 Issue #22117: Add _PyTime_ROUND_CEILING rounding method for timestamps by Victor Stinner · 9 years ago
  26. f81f0f9 Issue #22117: Fix rounding and implement _PyTime_ROUND_FLOOR in: by Victor Stinner · 9 years ago
  27. 02937aa Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetime by Victor Stinner · 9 years ago
  28. 95e9cef Issue #22117: Write unit tests for _PyTime_AsTimeval() by Victor Stinner · 9 years ago
  29. 34dc0f4 Issue #22117: The signal modules uses the new _PyTime_t API by Victor Stinner · 9 years ago
  30. 4bfb460 Issue #22117: time.monotonic() now uses the new _PyTime_t API by Victor Stinner · 9 years ago
  31. 992c43f Issue #22117: Fix rounding in _PyTime_FromSecondsObject() by Victor Stinner · 9 years ago
  32. 8c8b4e0 Issue #11188, #19748: mktime() returns -1 on error. On Linux, the tm_wday field by Victor Stinner · 10 years ago
  33. 1ac4261 Issue #19748: On AIX, time.mktime() now raises an OverflowError for year by Victor Stinner · 10 years ago
  34. 3c1b379 Issue #20320: select.select() and select.kqueue.control() now round the timeout by Victor Stinner · 10 years ago
  35. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  36. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  37. 393a942 Issue #20101: Merge with 3.3 by Zachary Ware · 10 years ago
  38. 487aedb Issue #20101: Allow test_monotonic to pass on Windows machines on which by Zachary Ware · 10 years ago
  39. a4275b2 (Merge 3.3) Close #19999: tolerate coarse time when testing time.monotonic() on by Victor Stinner · 11 years ago
  40. 1700788 Close #19999: tolerate coarse time when testing time.monotonic() on very by Victor Stinner · 11 years ago
  41. 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  42. 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  43. b5d3863 Issue #19545: Avoid chained exceptions while passing stray % to by Serhiy Storchaka · 11 years ago
  44. cdac302 Issue #19545: Avoid chained exceptions while passing stray % to by Serhiy Storchaka · 11 years ago
  45. 6c86181 Issue #19715: Ensure that consecutive calls to monotonic() are monotonic by Victor Stinner · 11 years ago
  46. a9c99a6 test_time.test_monotonic(): use a longer sleep to try to make the test more reliable by Victor Stinner · 11 years ago
  47. 3836d70 #17690: test_time now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 11 years ago
  48. 0f38908 #17572: Avoid chained exceptions while passing bad directives to time.strptime(). Initial patch by Claudiu Popa. by Ezio Melotti · 11 years ago
  49. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  50. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  51. c142bba Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields by Alexander Belopolsky · 12 years ago
  52. 6222d76 Fix test_time for adjusted/adjustable changes by Victor Stinner · 12 years ago
  53. 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 12 years ago
  54. 0dec1bf Fix sporadic failure of test_time.test_process_time() on Windows by Victor Stinner · 12 years ago
  55. 1c5ae55 don't use assertEqual for test for bool equality by Benjamin Peterson · 12 years ago
  56. 49a69e4 strip is_ prefixes on clock_info fields by Benjamin Peterson · 12 years ago
  57. 9a8ad0c Issue #14428: Remove test_process_time_threads() from test_time by Victor Stinner · 12 years ago
  58. 5df72c2 Issue #14428: Make test_process_time_threads() less strict by Victor Stinner · 12 years ago
  59. 1fc3ec9 Issue #14428: Rewrite test_process_time_threads() test by Victor Stinner · 12 years ago
  60. ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 12 years ago
  61. 30d7947 Expose clock_settime() as time.clock_settime() by Victor Stinner · 12 years ago
  62. 071eca3 Issue #10278: Add an optional strict argument to time.steady(), False by default by Victor Stinner · 12 years ago
  63. ec919cc Issue #10278: Drop time.monotonic() function, rename time.wallclock() to time.steady() by Victor Stinner · 12 years ago
  64. 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 12 years ago
  65. 643cd68 Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple by Victor Stinner · 12 years ago
  66. 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 12 years ago
  67. ccd5715 PEP 410 by Victor Stinner · 12 years ago
  68. 8b30201 Issue #13846: Add time.monotonic(), monotonic clock. by Victor Stinner · 12 years ago
  69. 2d6251c Issue #13847: Fix test_time, time.gmtime() doesn't use localtime() by Victor Stinner · 12 years ago
  70. 53d3645 Issue #13847: Make test_localtime_failure() more robust by Victor Stinner · 12 years ago
  71. 2cbae98 Issue #13847: Fix test_mktime(), time.localtime() now raises OSError by Victor Stinner · 12 years ago
  72. c1b5d34 Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead by Victor Stinner · 12 years ago
  73. 4ccc727 Issue #10278: wallclock() cannot go backward, but two consecutive calls by Victor Stinner · 12 years ago
  74. 2dd254d Issue #10278: Be more explicit in tests than wallclock() is monotonic (cannot by Victor Stinner · 12 years ago
  75. 391166f Be more lenient in test_wallclock (issue #10278). by Antoine Pitrou · 12 years ago
  76. b94b266 Close #10278: Add time.wallclock() function, monotonic clock. by Victor Stinner · 12 years ago
  77. 10a6ddb Issue #11886: Fix also test_time for the non-DST timezone name (EST/AEST) by Victor Stinner · 13 years ago
  78. bc9f0c6 (Merge 3.2) Issue #11886: workaround an OS bug (time zone data) in test_time by Victor Stinner · 13 years ago
  79. 0cd4790 Issue #11886: workaround an OS bug (time zone data) in test_time by Victor Stinner · 13 years ago
  80. e54371e Use unittest.skipUnless to skip the test related to the glibc bug, issue #13309. by Florent Xicluna · 13 years ago
  81. b0a1d62 Avoid a glibc bug in test_time (issue #13309) by Antoine Pitrou · 13 years ago
  82. 2fbc185 Issue #13312: skip the failing negative years for now. by Florent Xicluna · 13 years ago
  83. dfee6c8 Actually, there's more than one failing value. (changeset 9cb1b85237a9, issue #13312). by Florent Xicluna · 13 years ago
  84. e2a732e Issue #13312: skip the single failing value for now. by Florent Xicluna · 13 years ago
  85. d1bd7f7 Additional tests for negative years. by Florent Xicluna · 13 years ago
  86. 725af4d Lowercase the test name, to run last. by Florent Xicluna · 13 years ago
  87. 050c7e6 Replace temporary tests with the real test case for issue #13309 on Gentoo. by Florent Xicluna · 13 years ago
  88. 712b14f Troubleshoot issue #13309 on Gentoo buildbot. by Florent Xicluna · 13 years ago
  89. 752c1d4c Add temporary tests to troubleshoot issue #13309 on Gentoo buildbot. by Florent Xicluna · 13 years ago
  90. bceb528 Test the year range supported by time.strftime() and time.asctime(). by Florent Xicluna · 13 years ago
  91. 49ce068 Strengthen the tests for format '%Y', in relation with issue #13305. by Florent Xicluna · 13 years ago
  92. e0be423 Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to by Victor Stinner · 13 years ago
  93. 7f53a50 Issue #12459: time.sleep() now raises a ValueError if the sleep length is by Victor Stinner · 13 years ago
  94. 03163ac Issue #11930: Remove deprecated time.accept2dyear. by Alexander Belopolsky · 13 years ago
  95. ae664fb Merge from 3.1 by Senthil Kumaran · 13 years ago
  96. 8f377a3 Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya. by Senthil Kumaran · 13 years ago
  97. 13ed2ea Issue #10864 has been fixed: remove the workaround by Victor Stinner · 13 years ago
  98. 622ce12 Merged revisions 87921 via svnmerge from by Alexander Belopolsky · 13 years ago
  99. 4fb96f4 Merged revisions 87919 via svnmerge from by Alexander Belopolsky · 13 years ago
  100. a689241 This should fix mktime test on Windows by Alexander Belopolsky · 13 years ago