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