1. e250061 bpo-36895: remove time.clock() as per removal notice. (GH-13270) by Matthias Bussonnier · 5 years ago
  2. d246a67 bpo-36454: Fix test_time.test_monotonic() (GH-12929) by Victor Stinner · 5 years ago
  3. f1464f4 bpo-31904: Port the time module on VxWorks (GH-12305) by pxinwr · 5 years ago
  4. e2926b7 bpo-34373: fix test_mktime and test_pthread_getcpuclickid tests on AIX (GH-8726) by Michael Felt · 6 years ago
  5. 48498dd bpo-33723: Remove busy loop from test_time (GH-10773) by Victor Stinner · 6 years ago
  6. 65c216e bpo-33723: Fix test_time.test_thread_time() (GH-10724) by Victor Stinner · 6 years ago
  7. 90d0cfb bpo-35202: Remove unused imports in tests. (GH-10561) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 6 years ago
  8. e1a34ce closes bpo-34654: Tolerate + at the beginning of large years. (GH-9238) by Benjamin Peterson · 6 years ago
  9. 76be0ff bpo-13312: Avoid int underflow in time year. (GH-8912) by Gregory P. Smith · 6 years ago
  10. 938045f bpo-34179: Make sure decimal context doesn't affect other tests. (#8376) by Bo Bayles · 6 years ago
  11. e78dace bpo-33723: Fix test_time.test_process_time() (GH-8358) by Victor Stinner · 6 years ago
  12. d6345de bpo-33723: Fix test_time.test_thread_time() (GH-8267) by Victor Stinner · 6 years ago
  13. 4bd41c9 bpo-32025: Add time.thread_time() (#4410) by Antoine Pitrou · 7 years ago
  14. c29b585 bpo-31784: Implement PEP 564: add time.time_ns() (#3989) by Victor Stinner · 7 years ago
  15. 884d13a time.clock() now emits a DeprecationWarning (GH-4020) by Victor Stinner · 7 years ago
  16. 2c15b29 bpo-31786: Make functions in the select module blocking when timeout is a small negative value. (#4003) by Pablo Galindo · 7 years ago
  17. 8656670 weaken pthread_getcpuclockid test (more bpo-31596) (#3904) by Benjamin Peterson · 7 years ago
  18. e14679c closes bpo-31596: Add an interface for pthread_getcpuclockid(3) (#3756) by pdox · 7 years ago
  19. 829dacc bpo-26669: Fix nan arg value error in pytime.c (#3085) by Han Lee · 7 years ago
  20. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  21. f7eae0a [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) by Serhiy Storchaka · 7 years ago
  22. 717a32b Fix typo in test_time.py by Victor Stinner · 8 years ago
  23. c60542b pytime: add _PyTime_check_mul_overflow() macro to avoid undefined behaviour by Victor Stinner · 9 years ago
  24. 350b518 Fix test_time on platform with 32-bit time_t type by Victor Stinner · 9 years ago
  25. 4237d34 Fix test_time on platform with 32-bit time_t type by Victor Stinner · 9 years ago
  26. 9c72f9b Fix test_time on Windows by Victor Stinner · 9 years ago
  27. 3e2c8d8 test_time: rewrite PyTime API rounding tests by Victor Stinner · 9 years ago
  28. 7667f58 Issue #23517: fromtimestamp() and utcfromtimestamp() methods of by Victor Stinner · 9 years ago
  29. 45fd951 Merge from 3.5 by Steve Dower · 9 years ago
  30. e5b5895 Issue #24917: time_strftime() buffer over-read. by Steve Dower · 9 years ago
  31. 62b2462 Backing out 09b62202d9b7; the tests fail on Linux, and it needs a re-think. by Larry Hastings · 9 years ago
  32. 643d6d3 Issue #24917: Backed out changeset 09b62202d9b7 by Steve Dower · 9 years ago
  33. dcaf4cc Issue #24917: Backed out changeset 09b62202d9b7 by Steve Dower · 9 years ago
  34. 74a7b8f Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch. by Steve Dower · 9 years ago
  35. 373602f Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch. by Steve Dower · 9 years ago
  36. adfefa5 Issue #23517: Fix implementation of the ROUND_HALF_UP rounding mode in by Victor Stinner · 9 years ago
  37. 110f9e3 test_time: add tests on HALF_UP rounding mode for _PyTime_ObjectToTime_t() and by Victor Stinner · 9 years ago
  38. 8aad8d6 Issue #23517: test_time, skip a test checking a corner case on floating point by Victor Stinner · 9 years ago
  39. ead144c test_time: add more tests on HALF_UP rounding mode by Victor Stinner · 9 years ago
  40. acea9f6 Issue #23517: Reintroduce unit tests for the old PyTime API since it's still by Victor Stinner · 9 years ago
  41. 7447423 Issue #23517: Add "half up" rounding mode to the _PyTime API by Victor Stinner · 9 years ago
  42. 7aec764 Closes #24244: Removes invalid test from test_time by Steve Dower · 9 years ago
  43. 13019fd Issue #22117: Add a new _PyTime_FromSeconds() function by Victor Stinner · 9 years ago
  44. 62d1c70 Issue #22117, issue #23485: Fix _PyTime_AsMilliseconds() and by Victor Stinner · 9 years ago
  45. a695f83 Issue #22117: Remove _PyTime_ROUND_DOWN and _PyTime_ROUND_UP rounding methods by Victor Stinner · 9 years ago
  46. bcdd777 Issue #22117: Add _PyTime_ROUND_CEILING rounding method for timestamps by Victor Stinner · 9 years ago
  47. f81f0f9 Issue #22117: Fix rounding and implement _PyTime_ROUND_FLOOR in: by Victor Stinner · 9 years ago
  48. 02937aa Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetime by Victor Stinner · 9 years ago
  49. 95e9cef Issue #22117: Write unit tests for _PyTime_AsTimeval() by Victor Stinner · 9 years ago
  50. 34dc0f4 Issue #22117: The signal modules uses the new _PyTime_t API by Victor Stinner · 9 years ago
  51. 4bfb460 Issue #22117: time.monotonic() now uses the new _PyTime_t API by Victor Stinner · 9 years ago
  52. 992c43f Issue #22117: Fix rounding in _PyTime_FromSecondsObject() by Victor Stinner · 9 years ago
  53. 8c8b4e0 Issue #11188, #19748: mktime() returns -1 on error. On Linux, the tm_wday field by Victor Stinner · 10 years ago
  54. 1ac4261 Issue #19748: On AIX, time.mktime() now raises an OverflowError for year by Victor Stinner · 10 years ago
  55. 3c1b379 Issue #20320: select.select() and select.kqueue.control() now round the timeout by Victor Stinner · 10 years ago
  56. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  57. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  58. 393a942 Issue #20101: Merge with 3.3 by Zachary Ware · 11 years ago
  59. 487aedb Issue #20101: Allow test_monotonic to pass on Windows machines on which by Zachary Ware · 11 years ago
  60. a4275b2 (Merge 3.3) Close #19999: tolerate coarse time when testing time.monotonic() on by Victor Stinner · 11 years ago
  61. 1700788 Close #19999: tolerate coarse time when testing time.monotonic() on very by Victor Stinner · 11 years ago
  62. 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  63. 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  64. b5d3863 Issue #19545: Avoid chained exceptions while passing stray % to by Serhiy Storchaka · 11 years ago
  65. cdac302 Issue #19545: Avoid chained exceptions while passing stray % to by Serhiy Storchaka · 11 years ago
  66. 6c86181 Issue #19715: Ensure that consecutive calls to monotonic() are monotonic by Victor Stinner · 11 years ago
  67. a9c99a6 test_time.test_monotonic(): use a longer sleep to try to make the test more reliable by Victor Stinner · 11 years ago
  68. 3836d70 #17690: test_time now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 11 years ago
  69. 0f38908 #17572: Avoid chained exceptions while passing bad directives to time.strptime(). Initial patch by Claudiu Popa. by Ezio Melotti · 11 years ago
  70. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  71. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  72. c142bba Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields by Alexander Belopolsky · 12 years ago
  73. 6222d76 Fix test_time for adjusted/adjustable changes by Victor Stinner · 12 years ago
  74. 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 12 years ago
  75. 0dec1bf Fix sporadic failure of test_time.test_process_time() on Windows by Victor Stinner · 12 years ago
  76. 1c5ae55 don't use assertEqual for test for bool equality by Benjamin Peterson · 12 years ago
  77. 49a69e4 strip is_ prefixes on clock_info fields by Benjamin Peterson · 12 years ago
  78. 9a8ad0c Issue #14428: Remove test_process_time_threads() from test_time by Victor Stinner · 12 years ago
  79. 5df72c2 Issue #14428: Make test_process_time_threads() less strict by Victor Stinner · 12 years ago
  80. 1fc3ec9 Issue #14428: Rewrite test_process_time_threads() test by Victor Stinner · 12 years ago
  81. ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 12 years ago
  82. 30d7947 Expose clock_settime() as time.clock_settime() by Victor Stinner · 12 years ago
  83. 071eca3 Issue #10278: Add an optional strict argument to time.steady(), False by default by Victor Stinner · 12 years ago
  84. ec919cc Issue #10278: Drop time.monotonic() function, rename time.wallclock() to time.steady() by Victor Stinner · 12 years ago
  85. 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 12 years ago
  86. 643cd68 Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple by Victor Stinner · 12 years ago
  87. 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 12 years ago
  88. ccd5715 PEP 410 by Victor Stinner · 12 years ago
  89. 8b30201 Issue #13846: Add time.monotonic(), monotonic clock. by Victor Stinner · 12 years ago
  90. 2d6251c Issue #13847: Fix test_time, time.gmtime() doesn't use localtime() by Victor Stinner · 13 years ago
  91. 53d3645 Issue #13847: Make test_localtime_failure() more robust by Victor Stinner · 13 years ago
  92. 2cbae98 Issue #13847: Fix test_mktime(), time.localtime() now raises OSError by Victor Stinner · 13 years ago
  93. c1b5d34 Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead by Victor Stinner · 13 years ago
  94. 4ccc727 Issue #10278: wallclock() cannot go backward, but two consecutive calls by Victor Stinner · 13 years ago
  95. 2dd254d Issue #10278: Be more explicit in tests than wallclock() is monotonic (cannot by Victor Stinner · 13 years ago
  96. 391166f Be more lenient in test_wallclock (issue #10278). by Antoine Pitrou · 13 years ago
  97. b94b266 Close #10278: Add time.wallclock() function, monotonic clock. by Victor Stinner · 13 years ago
  98. 10a6ddb Issue #11886: Fix also test_time for the non-DST timezone name (EST/AEST) by Victor Stinner · 13 years ago
  99. bc9f0c6 (Merge 3.2) Issue #11886: workaround an OS bug (time zone data) in test_time by Victor Stinner · 13 years ago
  100. 0cd4790 Issue #11886: workaround an OS bug (time zone data) in test_time by Victor Stinner · 13 years ago