1. 13ff245 bpo-32593: Drop FreeBSD 9 and older support (#5232) by Victor Stinner · 7 years ago
  2. 4bd41c9 bpo-32025: Add time.thread_time() (#4410) by Antoine Pitrou · 7 years ago
  3. c29b585 bpo-31784: Implement PEP 564: add time.time_ns() (#3989) by Victor Stinner · 7 years ago
  4. a64ce97 bpo-31917: Add 3 new clock identifiers (#4207) by Victor Stinner · 7 years ago
  5. 884d13a time.clock() now emits a DeprecationWarning (GH-4020) by Victor Stinner · 7 years ago
  6. 703ff38 bpo-28157: Improvements for the time module documentation (GH-928) by Cheryl Sabella · 7 years ago
  7. e14679c closes bpo-31596: Add an interface for pthread_getcpuclockid(3) (#3756) by pdox · 7 years ago
  8. 23557d5 bpo-29026: Clarify documentation of time.time (#34) by Eric Appelt · 8 years ago
  9. f810d04 Closes #28130: Documented that time.tzset() updates time module globals. by Alexander Belopolsky · 8 years ago
  10. 18f3a9b Closes #25283: Make tm_gmtoff and tm_zone available on all platforms. by Alexander Belopolsky · 8 years ago
  11. 4da945f Merge Issue #22558. by Terry Jan Reedy · 8 years ago
  12. fa089b9 Issue #22558: Add remaining doc links to source code for Python-coded modules. by Terry Jan Reedy · 8 years ago
  13. 1577723 merge from 3.5 by Senthil Kumaran · 9 years ago
  14. 6ffbcdf merge from 3.4 by Senthil Kumaran · 9 years ago
  15. a880800 Issue21221 - Explain the usage of tm_isdst attribute of mktime, with valid by Senthil Kumaran · 9 years ago
  16. 357cb98 Fixed typos in TZ format description by Alexander Belopolsky · 9 years ago
  17. 79d68f9 Issue #23646: If time.sleep() is interrupted by a signal, the sleep is now by Victor Stinner · 10 years ago
  18. 0c2fd89 Revert changeset d927047b1d8eb87738676980a24930d053ba2150 by Victor Stinner · 10 years ago
  19. 945c82e test by Victor Stinner · 10 years ago
  20. 58f0201 Merge: #23215: note that time.sleep affects the current thread only. by R David Murray · 10 years ago
  21. 1923b62 #23215: reflow paragraph. by R David Murray · 10 years ago
  22. f1f9675 #23251: Note that time.sleep affects the calling thread only. by R David Murray · 10 years ago
  23. 3fab208 merge with 3.4 by Georg Brandl · 10 years ago
  24. 01546a8 Closes #22749: remove outdated advice to use clock() for accurate timing. by Georg Brandl · 10 years ago
  25. ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
  26. bfdcd43 Issue #18758: Fixed and improved cross-references. by Serhiy Storchaka · 11 years ago
  27. b7117af Refer to strftime(3) manpage for platform specific format codes. by Georg Brandl · 11 years ago
  28. 41459a9 Issue #15940: Replace tab. by Terry Jan Reedy · 12 years ago
  29. b5e2e7e Issue #15940: Specify effect of locale on time functions. by Terry Jan Reedy · 12 years ago
  30. 99bafff Fix typo noticed by Tom Lynn. by Ezio Melotti · 12 years ago
  31. 3934b61 Fix typo in documentation for time module, thanks to docs@ by Andrew Svetlov · 12 years ago
  32. 61063cc Fix a couple of versionadded/versionchanged related markup errors. by Georg Brandl · 12 years ago
  33. 93c9cd0 Issue #9527: tm_gmtoff has 'correct' sign. by Alexander Belopolsky · 12 years ago
  34. c142bba Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields by Alexander Belopolsky · 12 years ago
  35. 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 12 years ago
  36. bda4b88 time.get_clock_info() uses a namespace instead of structseq by Victor Stinner · 12 years ago
  37. ed36395 Fix time.time() references in the time module docs by Petri Lehtinen · 12 years ago
  38. 1033b31 Fix time.time() references in the time module docs by Petri Lehtinen · 12 years ago
  39. 49a69e4 strip is_ prefixes on clock_info fields by Benjamin Peterson · 12 years ago
  40. 514880c Review of doc changes re PEP 418. by Georg Brandl · 12 years ago
  41. 47620a6 Close #14309: Deprecate time.clock() by Victor Stinner · 12 years ago
  42. ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 12 years ago
  43. ca6e40f Time doc: documentation that the CLOCK_* constants and clock_*() functions are by Victor Stinner · 12 years ago
  44. 6125e23 Doc: sort time.CLOCK_xxx constants by Victor Stinner · 13 years ago
  45. 30d7947 Expose clock_settime() as time.clock_settime() by Victor Stinner · 13 years ago
  46. 1470f35 Add time.CLOCK_HIGHRES constant, needed on Solaris by Victor Stinner · 13 years ago
  47. 909f5bc Fix newlines. by Georg Brandl · 13 years ago
  48. 2bf1f3b time.steady() doc: don't repeat the default value by Victor Stinner · 13 years ago
  49. 7cc7033 Merge #12758: removing confusing mention of UTC from time.time description by R David Murray · 13 years ago
  50. 38c2754 #12758: removing confusing mention of UTC from time.time description by R David Murray · 13 years ago
  51. 071eca3 Issue #10278: Add an optional strict argument to time.steady(), False by default by Victor Stinner · 13 years ago
  52. ec919cc Issue #10278: Drop time.monotonic() function, rename time.wallclock() to time.steady() by Victor Stinner · 13 years ago
  53. 0a78622 Issue #13846: Enhance time.monotonic() documentation by Victor Stinner · 13 years ago
  54. 0f7888d Time module doc: Fix reST syntax by Victor Stinner · 13 years ago
  55. 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 13 years ago
  56. ccd5715 PEP 410 by Victor Stinner · 13 years ago
  57. 8b30201 Issue #13846: Add time.monotonic(), monotonic clock. by Victor Stinner · 13 years ago
  58. 538343d Fix small grammatical inconsistency. by Georg Brandl · 13 years ago
  59. 0940602 Sort functions in the doc of the time module by Victor Stinner · 13 years ago
  60. b94b266 Close #10278: Add time.wallclock() function, monotonic clock. by Victor Stinner · 13 years ago
  61. e0be423 Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to by Victor Stinner · 13 years ago
  62. 8e35cf0 merge with 3.2 by Sandro Tosi · 13 years ago
  63. f693810 mention RFC1123 as origin of 4-year digit; thanks to John Haxby from docs@ by Sandro Tosi · 13 years ago
  64. 03163ac Issue #11930: Remove deprecated time.accept2dyear. by Alexander Belopolsky · 13 years ago
  65. 9971e00 Issue #2568: Removed bogus rationale for supporting tm_sec=61. by Alexander Belopolsky · 14 years ago
  66. 04da1e0 Fixed a footnote reference by Alexander Belopolsky · 14 years ago
  67. 2997837 Fixed documentation to reflect recent changes for years < 1900. by Alexander Belopolsky · 14 years ago
  68. c64708a Issue #10827: Changed the rules for 2-digit years. The time.asctime by Alexander Belopolsky · 14 years ago
  69. b9588b5 Issue #8013: time.asctime and time.ctime no longer call system asctime by Alexander Belopolsky · 14 years ago
  70. b67878a #7790: move table of struct_time members to the actual description of struct_time. by Georg Brandl · 14 years ago
  71. 60203b4 Migrate to Sphinx 1.0 C language constructs. by Georg Brandl · 14 years ago
  72. 69f3fd0 Merged revisions 81756 via svnmerge from by Alexander Belopolsky · 14 years ago
  73. 7f01a13 Last round of adapting style of documenting argument default values. by Georg Brandl · 15 years ago
  74. 7f6b4f8 Make sure time.strptime only accepts strings (and document the fact like by Brett Cannon · 16 years ago
  75. e0124bd Merged revisions 69998-69999,70002,70022-70023,70025-70026,70061,70086,70145,70171,70183,70188,70235,70244,70275,70281 via svnmerge from by Benjamin Peterson · 16 years ago
  76. c575c90 Merged revisions 66452 via svnmerge from by Georg Brandl · 16 years ago
  77. fe337bf Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from by Christian Heimes · 17 years ago
  78. 55ac8f0 Get rid of the remaining versionadded/versionchanged directives. by Georg Brandl · 17 years ago
  79. 116aa62 Move the 3k reST doc tree in place. by Georg Brandl · 17 years ago