1. b26a9b1 Replace WaitForSingleObject with WaitForSingleObjectEx, by Martin v. Löwis · 11 years ago
  2. 14c81ab #16135: Removal of OS/2 support (Modules/*) by Jesus Cea · 12 years ago
  3. cf77454 Issue #9650: List commonly used format codes in time.strftime and time.strptime docsttings. by Alexander Belopolsky · 12 years ago
  4. c142bba Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields by Alexander Belopolsky · 12 years ago
  5. 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 12 years ago
  6. bda4b88 time.get_clock_info() uses a namespace instead of structseq by Victor Stinner · 12 years ago
  7. d973824 Fixed a typo in time_localtime() by Alexander Belopolsky · 12 years ago
  8. 49a69e4 strip is_ prefixes on clock_info fields by Benjamin Peterson · 12 years ago
  9. ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 12 years ago
  10. b8d0169 Fix clock_gettime/getres/settime: PyArg_ParseTuple() expects an int by Victor Stinner · 12 years ago
  11. 30d7947 Expose clock_settime() as time.clock_settime() by Victor Stinner · 12 years ago
  12. 1470f35 Add time.CLOCK_HIGHRES constant, needed on Solaris by Victor Stinner · 12 years ago
  13. ad95c2d time.time() now uses clock_gettime(CLOCK_REALTIME) if available by Victor Stinner · 12 years ago
  14. 74eb6c0 Document the fact that mach_timebase_info() cannot fail by Victor Stinner · 12 years ago
  15. 8486076 Fix time.steady(strict=True): don't use CLOCK_REALTIME by Victor Stinner · 12 years ago
  16. 70b2e1e Issue #14368: _PyTime_gettimeofday() cannot fail by Victor Stinner · 12 years ago
  17. 071eca3 Issue #10278: Add an optional strict argument to time.steady(), False by default by Victor Stinner · 12 years ago
  18. ec919cc Issue #10278: Drop time.monotonic() function, rename time.wallclock() to time.steady() by Victor Stinner · 12 years ago
  19. 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 12 years ago
  20. a8ec5ea Issue #14104: Implement time.monotonic() on Mac OS X, by Victor Stinner · 12 years ago
  21. 4aea7d3 Issue #14125: Fix refleak in timemodule.c on Windows. Thanks sbt for pointing by Stefan Krah · 12 years ago
  22. 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 12 years ago
  23. ccd5715 PEP 410 by Victor Stinner · 12 years ago
  24. 8b30201 Issue #13846: Add time.monotonic(), monotonic clock. by Victor Stinner · 12 years ago
  25. 85fdfa8 Issue #13847: time.clock() now raises a RuntimeError if the processor time used by Victor Stinner · 12 years ago
  26. c1b5d34 Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead by Victor Stinner · 12 years ago
  27. e39ebe4 Merge by Antoine Pitrou · 13 years ago
  28. 855889b Issue #10278: fix a typo in the doc by Victor Stinner · 13 years ago
  29. b94b266 Close #10278: Add time.wallclock() function, monotonic clock. by Victor Stinner · 13 years ago
  30. 2c08560 Fix error handling in timemodule.c by Antoine Pitrou · 13 years ago
  31. ab87021 Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.c by Victor Stinner · 13 years ago
  32. 136ea49 Issue #10951: Fix a compiler warning in timemodule.c by Victor Stinner · 13 years ago
  33. 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
  34. f2ea71f Issue #13560: Add PyUnicode_EncodeLocale() by Victor Stinner · 13 years ago
  35. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
  36. ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  37. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  38. db62389 (Merge 3.2) Issue #5905: time.strftime() is now using the locale encoding, by Victor Stinner · 13 years ago
  39. 720f34a Issue #5905: time.strftime() is now using the locale encoding, instead of by Victor Stinner · 13 years ago
  40. 6dd381e Issue #12328: Under Windows, refactor handling of Ctrl-C events and by Antoine Pitrou · 13 years ago
  41. e0be423 Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to by Victor Stinner · 13 years ago
  42. 5a3ff79 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
  43. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  44. 792b47f (Merge 3.2) Issue #10653: On Windows, use strftime() instead of wcsftime() by Victor Stinner · 13 years ago
  45. c1f32ca Issue #10653: On Windows, use strftime() instead of wcsftime() because by Victor Stinner · 13 years ago
  46. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  47. 8d91d45 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
  48. 7f53a50 Issue #12459: time.sleep() now raises a ValueError if the sleep length is by Victor Stinner · 13 years ago
  49. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago
  50. 9122fdd Issue #9642: Fix the definition of time.clock() on Windows by Victor Stinner · 13 years ago
  51. 48b1ce5 Issue #12462: time.sleep() now calls immediatly the (Python) signal handler if by Victor Stinner · 13 years ago
  52. 66746cb Removed unused variable by Alexander Belopolsky · 13 years ago
  53. 03163ac Issue #11930: Remove deprecated time.accept2dyear. by Alexander Belopolsky · 13 years ago
  54. 736975a merge from 3.2 by Senthil Kumaran · 13 years ago
  55. ae664fb Merge from 3.1 by Senthil Kumaran · 13 years ago
  56. 8f377a3 Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya. by Senthil Kumaran · 13 years ago
  57. 499dfcf Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead of by Victor Stinner · 13 years ago
  58. 6f0e4f9 time.strftime(): replace PyErr_Format() by PyErr_SetString() by Victor Stinner · 13 years ago
  59. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  60. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  61. 4fb96f4 Merged revisions 87919 via svnmerge from by Alexander Belopolsky · 13 years ago
  62. 43b2f45 Merged revisions 87136,87221,87256,87337-87338,87571,87839,88164 via svnmerge from by R. David Murray · 13 years ago
  63. b7d40d1 Issue #1726687: time.mktime() will now correctly compute value one by Alexander Belopolsky · 14 years ago
  64. 06ec45e Issue #10864: limit year to [1; 9999] for strftime() on Solaris by Victor Stinner · 14 years ago
  65. 301f121 Issue #1777412: Remove all limits on tm_year from time.strftime() by Victor Stinner · 14 years ago
  66. 73ea29c Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900 by Victor Stinner · 14 years ago
  67. 0dd06f4 Fixed error handling branches. Thanks Victor Stinner for pointing this out. by Alexander Belopolsky · 14 years ago
  68. b8bb466 Issue #1777412: extended year range of strftime down to 1000. by Alexander Belopolsky · 14 years ago
  69. c64708a Issue #10827: Changed the rules for 2-digit years. The time.asctime by Alexander Belopolsky · 14 years ago
  70. 610e544 Further simplify gettmarg() by Alexander Belopolsky · 14 years ago
  71. ecbb8dc Use PyOS_snprintf for better portability. by Alexander Belopolsky · 14 years ago
  72. a686725 - time.accept2dyear = True is now equivalent to time.accept2dyear = 1 by Alexander Belopolsky · 14 years ago
  73. 5da468f Whitespace cleanup by Alexander Belopolsky · 14 years ago
  74. b9588b5 Issue #8013: time.asctime and time.ctime no longer call system asctime by Alexander Belopolsky · 14 years ago
  75. d4bf48b Merged revisions 87648,87656 via svnmerge from by Alexander Belopolsky · 14 years ago
  76. e10608c #8013 follow-up: by Georg Brandl · 14 years ago
  77. e2dc082 Issue #8013: Fixed time.asctime segfault when OS's asctime fails by Alexander Belopolsky · 14 years ago
  78. 4d55bf9 #10699: fix docstring for tzset: it does not take a parameter by R. David Murray · 14 years ago
  79. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  80. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  81. ef12810 time: fix gcc warning by Victor Stinner · 14 years ago
  82. 38e2996 Issue #6608: time.asctime is now checking struct tm fields its input by Alexander Belopolsky · 14 years ago
  83. b290478 Issue #9979: Use PyUnicode_AsWideCharString() in time.strftime() by Victor Stinner · 14 years ago
  84. 6fc4ade Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API by Alexander Belopolsky · 14 years ago
  85. d95a586 Issue #9012: "Separate compilation of time and datetime modules." by Alexander Belopolsky · 14 years ago
  86. 69f3fd0 Merged revisions 81756 via svnmerge from by Alexander Belopolsky · 14 years ago
  87. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  88. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  89. dc8c2ad Poor PLAN9, it isn't supported by Antoine Pitrou · 14 years ago
  90. ec79b1c Merged revisions 75020 via svnmerge from by Brett Cannon · 15 years ago
  91. 7d12c55 Merged revisions 75011 via svnmerge from by Brett Cannon · 15 years ago
  92. 6b0e51a Issue #6183: Disables wcsftime on VC6. by Hirokazu Yamamoto · 15 years ago
  93. 1b01ccd Issue #5562: Use wcsftime for time.strftime where available. by Martin v. Löwis · 15 years ago
  94. b5be6d4 re-merge r69268 (issue4804) from trunk: by Amaury Forgeot d'Arc · 15 years ago
  95. 575d133 Issue #5249: time.strftime returned malformed string when format string by Hirokazu Yamamoto · 15 years ago
  96. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  97. 86b2fb9 Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,64744-64746,64756-64761,64767-64769,64771-64772,64774-64775,64788,64793,64835-64836 via svnmerge from by Georg Brandl · 16 years ago
  98. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  99. d218dc1 Merged revisions 62177-62178,62180-62193 via svnmerge from by Martin v. Löwis · 16 years ago
  100. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 16 years ago