1. c3c6f71 Fixes maximum usable length of buffer for formatting time zone in localtime(). by Steve Dower · 7 years ago
  2. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  3. 3e7a3cb Issue #28148: Stop using localtime() and gmtime() in the time module. by Alexander Belopolsky · 8 years ago
  4. 37098cd more granular configure checks for clock_* functions (closes #28081) by Benjamin Peterson · 8 years ago
  5. 18f3a9b Closes #25283: Make tm_gmtoff and tm_zone available on all platforms. by Alexander Belopolsky · 8 years ago
  6. 53e22bf Issue #22624: Python 3 requires clock() to build by Victor Stinner · 8 years ago
  7. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 8 years ago
  8. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 8 years ago
  9. 57ab1cd Issue #25092: Fix datetime.strftime() failure when errno was already set to EINVAL. by Steve Dower · 9 years ago
  10. 97cded9 Issue #25029: MemoryError in test_strptime by Steve Dower · 9 years ago
  11. e5b5895 Issue #24917: time_strftime() buffer over-read. by Steve Dower · 9 years ago
  12. 62b2462 Backing out 09b62202d9b7; the tests fail on Linux, and it needs a re-think. by Larry Hastings · 9 years ago
  13. 373602f Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch. by Steve Dower · 9 years ago
  14. d9ef74e Issue 24244: Prevents termination when an invalid format string is encountered on Windows. by Steve Dower · 9 years ago
  15. 6aa446c PEP 475: on EINTR, retry the function even if the timeout is equals to zero by Victor Stinner · 9 years ago
  16. 869e177 Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING by Victor Stinner · 9 years ago
  17. ea9c0dd Issue #22117: Fix usage of _PyTime_AsTimeval() by Victor Stinner · 9 years ago
  18. 02937aa Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetime by Victor Stinner · 9 years ago
  19. b3b4544 Issue #22117: Use the _PyTime_t API for time.clock_settime() by Victor Stinner · 9 years ago
  20. 95e9cef Issue #22117: Write unit tests for _PyTime_AsTimeval() by Victor Stinner · 9 years ago
  21. a47b881 Issue #22117: time.time() now uses the new _PyTime_t API by Victor Stinner · 9 years ago
  22. 4bfb460 Issue #22117: time.monotonic() now uses the new _PyTime_t API by Victor Stinner · 9 years ago
  23. 992c43f Issue #22117: Fix rounding in _PyTime_FromSecondsObject() by Victor Stinner · 9 years ago
  24. cb29f01 Issue #22117: Add a new Python timestamp format _PyTime_t to pytime.h by Victor Stinner · 9 years ago
  25. 0eac130 Issue #23646: Fix test_threading on Windows by Victor Stinner · 9 years ago
  26. 9a8089b Issue #23646: Enhance precision of time.sleep() and socket timeout when by Victor Stinner · 9 years ago
  27. 79d68f9 Issue #23646: If time.sleep() is interrupted by a signal, the sleep is now by Victor Stinner · 9 years ago
  28. 0c2fd89 Revert changeset d927047b1d8eb87738676980a24930d053ba2150 by Victor Stinner · 9 years ago
  29. 945c82e test by Victor Stinner · 9 years ago
  30. 65e4cb1 Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), which will be used for the official 3.5 release. by Steve Dower · 10 years ago
  31. f427a14 Issue #22592: Drop support of the Borland C compiler to build Python by Victor Stinner · 10 years ago
  32. ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
  33. 67ca33d Issue #22043: Oops, fix perf_counter() on UNIX if no monotonic clock is by Victor Stinner · 10 years ago
  34. 5488449 Issue #22043: Simplify time.perf_counter() on Windows by Victor Stinner · 10 years ago
  35. 0011124 Issue #22043: _PyTime_Init() now checks if the system clock works. by Victor Stinner · 10 years ago
  36. 7efb833 Issue #22287: On UNIX, _PyTime_gettimeofday() now uses by Victor Stinner · 10 years ago
  37. a734af3 timemodule.c: Replace PyExc_IOError with PyExc_OSError by Victor Stinner · 10 years ago
  38. 1ac4261 Issue #19748: On AIX, time.mktime() now raises an OverflowError for year by Victor Stinner · 10 years ago
  39. 3c1b379 Issue #20320: select.select() and select.kqueue.control() now round the timeout by Victor Stinner · 10 years ago
  40. 93965f7 Issue #19634: time.strftime("%y") now raises a ValueError on Solaris when given by Victor Stinner · 11 years ago
  41. 136f064 Issue #19634: Fix time_strftime() on AIX, format is a wchar_t* not a PyObject* by Victor Stinner · 11 years ago
  42. 55329f8 Issue #19634: time.strftime("%y") now raises a ValueError on AIX when given a by Victor Stinner · 11 years ago
  43. bbe268f Issue13674 Correct crash with strftime %y format under Windows by Tim Golden · 11 years ago
  44. 6e51b8f Issue13674 Correct crash with strftime %y format under Windows by Tim Golden · 11 years ago
  45. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
  46. 2ff51b8 Issue #18408: Fix time.tzset(), detect exception when calling PyInit_timezone() by Victor Stinner · 11 years ago
  47. 9303749 Fix time.mktime() and datetime.datetime.timestamp() on AIX by Victor Stinner · 11 years ago
  48. d7a034b (Merge 3.3) Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 by Victor Stinner · 11 years ago
  49. 36b82d8 Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 by Victor Stinner · 11 years ago
  50. 245bbee Merge. by Richard Oudkerk · 11 years ago
  51. cf8a1e5 - Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'s "tv_nsec" member is not a C long. by Antoine Pitrou · 11 years ago
  52. b26a9b1 Replace WaitForSingleObject with WaitForSingleObjectEx, by Martin v. Löwis · 11 years ago
  53. 14c81ab #16135: Removal of OS/2 support (Modules/*) by Jesus Cea · 12 years ago
  54. cf77454 Issue #9650: List commonly used format codes in time.strftime and time.strptime docsttings. by Alexander Belopolsky · 12 years ago
  55. c142bba Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields by Alexander Belopolsky · 12 years ago
  56. 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 12 years ago
  57. bda4b88 time.get_clock_info() uses a namespace instead of structseq by Victor Stinner · 12 years ago
  58. d973824 Fixed a typo in time_localtime() by Alexander Belopolsky · 12 years ago
  59. 49a69e4 strip is_ prefixes on clock_info fields by Benjamin Peterson · 12 years ago
  60. ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 12 years ago
  61. b8d0169 Fix clock_gettime/getres/settime: PyArg_ParseTuple() expects an int by Victor Stinner · 12 years ago
  62. 30d7947 Expose clock_settime() as time.clock_settime() by Victor Stinner · 12 years ago
  63. 1470f35 Add time.CLOCK_HIGHRES constant, needed on Solaris by Victor Stinner · 12 years ago
  64. ad95c2d time.time() now uses clock_gettime(CLOCK_REALTIME) if available by Victor Stinner · 12 years ago
  65. 74eb6c0 Document the fact that mach_timebase_info() cannot fail by Victor Stinner · 12 years ago
  66. 8486076 Fix time.steady(strict=True): don't use CLOCK_REALTIME by Victor Stinner · 12 years ago
  67. 70b2e1e Issue #14368: _PyTime_gettimeofday() cannot fail by Victor Stinner · 12 years ago
  68. 071eca3 Issue #10278: Add an optional strict argument to time.steady(), False by default by Victor Stinner · 12 years ago
  69. ec919cc Issue #10278: Drop time.monotonic() function, rename time.wallclock() to time.steady() 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. a8ec5ea Issue #14104: Implement time.monotonic() on Mac OS X, by Victor Stinner · 12 years ago
  72. 4aea7d3 Issue #14125: Fix refleak in timemodule.c on Windows. Thanks sbt for pointing by Stefan Krah · 12 years ago
  73. 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 12 years ago
  74. ccd5715 PEP 410 by Victor Stinner · 12 years ago
  75. 8b30201 Issue #13846: Add time.monotonic(), monotonic clock. by Victor Stinner · 12 years ago
  76. 85fdfa8 Issue #13847: time.clock() now raises a RuntimeError if the processor time used by Victor Stinner · 12 years ago
  77. c1b5d34 Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead by Victor Stinner · 12 years ago
  78. e39ebe4 Merge by Antoine Pitrou · 12 years ago
  79. 855889b Issue #10278: fix a typo in the doc by Victor Stinner · 12 years ago
  80. b94b266 Close #10278: Add time.wallclock() function, monotonic clock. by Victor Stinner · 12 years ago
  81. 2c08560 Fix error handling in timemodule.c by Antoine Pitrou · 12 years ago
  82. ab87021 Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.c by Victor Stinner · 12 years ago
  83. 136ea49 Issue #10951: Fix a compiler warning in timemodule.c by Victor Stinner · 12 years ago
  84. 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 12 years ago
  85. f2ea71f Issue #13560: Add PyUnicode_EncodeLocale() by Victor Stinner · 12 years ago
  86. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 12 years ago
  87. ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 12 years ago
  88. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 12 years ago
  89. db62389 (Merge 3.2) Issue #5905: time.strftime() is now using the locale encoding, by Victor Stinner · 12 years ago
  90. 720f34a Issue #5905: time.strftime() is now using the locale encoding, instead of by Victor Stinner · 12 years ago
  91. 6dd381e Issue #12328: Under Windows, refactor handling of Ctrl-C events and by Antoine Pitrou · 13 years ago
  92. e0be423 Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to by Victor Stinner · 13 years ago
  93. 5a3ff79 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
  94. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  95. 792b47f (Merge 3.2) Issue #10653: On Windows, use strftime() instead of wcsftime() by Victor Stinner · 13 years ago
  96. c1f32ca Issue #10653: On Windows, use strftime() instead of wcsftime() because by Victor Stinner · 13 years ago
  97. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  98. 8d91d45 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
  99. 7f53a50 Issue #12459: time.sleep() now raises a ValueError if the sleep length is by Victor Stinner · 13 years ago
  100. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago