1. 93965f7 Issue #19634: time.strftime("%y") now raises a ValueError on Solaris when given by Victor Stinner · 11 years ago
  2. 136f064 Issue #19634: Fix time_strftime() on AIX, format is a wchar_t* not a PyObject* by Victor Stinner · 11 years ago
  3. 55329f8 Issue #19634: time.strftime("%y") now raises a ValueError on AIX when given a by Victor Stinner · 11 years ago
  4. bbe268f Issue13674 Correct crash with strftime %y format under Windows by Tim Golden · 11 years ago
  5. 6e51b8f Issue13674 Correct crash with strftime %y format under Windows by Tim Golden · 11 years ago
  6. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
  7. 2ff51b8 Issue #18408: Fix time.tzset(), detect exception when calling PyInit_timezone() by Victor Stinner · 11 years ago
  8. 9303749 Fix time.mktime() and datetime.datetime.timestamp() on AIX by Victor Stinner · 11 years ago
  9. d7a034b (Merge 3.3) Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 by Victor Stinner · 11 years ago
  10. 36b82d8 Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 by Victor Stinner · 11 years ago
  11. 245bbee Merge. by Richard Oudkerk · 11 years ago
  12. 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
  13. b26a9b1 Replace WaitForSingleObject with WaitForSingleObjectEx, by Martin v. Löwis · 11 years ago
  14. 14c81ab #16135: Removal of OS/2 support (Modules/*) by Jesus Cea · 12 years ago
  15. cf77454 Issue #9650: List commonly used format codes in time.strftime and time.strptime docsttings. by Alexander Belopolsky · 12 years ago
  16. c142bba Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields by Alexander Belopolsky · 12 years ago
  17. 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 12 years ago
  18. bda4b88 time.get_clock_info() uses a namespace instead of structseq by Victor Stinner · 12 years ago
  19. d973824 Fixed a typo in time_localtime() by Alexander Belopolsky · 12 years ago
  20. 49a69e4 strip is_ prefixes on clock_info fields by Benjamin Peterson · 12 years ago
  21. ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 12 years ago
  22. b8d0169 Fix clock_gettime/getres/settime: PyArg_ParseTuple() expects an int by Victor Stinner · 12 years ago
  23. 30d7947 Expose clock_settime() as time.clock_settime() by Victor Stinner · 12 years ago
  24. 1470f35 Add time.CLOCK_HIGHRES constant, needed on Solaris by Victor Stinner · 12 years ago
  25. ad95c2d time.time() now uses clock_gettime(CLOCK_REALTIME) if available by Victor Stinner · 12 years ago
  26. 74eb6c0 Document the fact that mach_timebase_info() cannot fail by Victor Stinner · 12 years ago
  27. 8486076 Fix time.steady(strict=True): don't use CLOCK_REALTIME by Victor Stinner · 12 years ago
  28. 70b2e1e Issue #14368: _PyTime_gettimeofday() cannot fail by Victor Stinner · 12 years ago
  29. 071eca3 Issue #10278: Add an optional strict argument to time.steady(), False by default by Victor Stinner · 12 years ago
  30. ec919cc Issue #10278: Drop time.monotonic() function, rename time.wallclock() to time.steady() by Victor Stinner · 12 years ago
  31. 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 12 years ago
  32. a8ec5ea Issue #14104: Implement time.monotonic() on Mac OS X, by Victor Stinner · 12 years ago
  33. 4aea7d3 Issue #14125: Fix refleak in timemodule.c on Windows. Thanks sbt for pointing by Stefan Krah · 12 years ago
  34. 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 12 years ago
  35. ccd5715 PEP 410 by Victor Stinner · 12 years ago
  36. 8b30201 Issue #13846: Add time.monotonic(), monotonic clock. by Victor Stinner · 12 years ago
  37. 85fdfa8 Issue #13847: time.clock() now raises a RuntimeError if the processor time used by Victor Stinner · 12 years ago
  38. c1b5d34 Issue #13847: time.localtime() and time.gmtime() now raise an OSError instead by Victor Stinner · 12 years ago
  39. e39ebe4 Merge by Antoine Pitrou · 12 years ago
  40. 855889b Issue #10278: fix a typo in the doc by Victor Stinner · 12 years ago
  41. b94b266 Close #10278: Add time.wallclock() function, monotonic clock. by Victor Stinner · 12 years ago
  42. 2c08560 Fix error handling in timemodule.c by Antoine Pitrou · 12 years ago
  43. ab87021 Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.c by Victor Stinner · 13 years ago
  44. 136ea49 Issue #10951: Fix a compiler warning in timemodule.c by Victor Stinner · 13 years ago
  45. 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
  46. f2ea71f Issue #13560: Add PyUnicode_EncodeLocale() by Victor Stinner · 13 years ago
  47. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
  48. ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  49. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  50. db62389 (Merge 3.2) Issue #5905: time.strftime() is now using the locale encoding, by Victor Stinner · 13 years ago
  51. 720f34a Issue #5905: time.strftime() is now using the locale encoding, instead of by Victor Stinner · 13 years ago
  52. 6dd381e Issue #12328: Under Windows, refactor handling of Ctrl-C events and by Antoine Pitrou · 13 years ago
  53. e0be423 Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to by Victor Stinner · 13 years ago
  54. 5a3ff79 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
  55. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  56. 792b47f (Merge 3.2) Issue #10653: On Windows, use strftime() instead of wcsftime() by Victor Stinner · 13 years ago
  57. c1f32ca Issue #10653: On Windows, use strftime() instead of wcsftime() because by Victor Stinner · 13 years ago
  58. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  59. 8d91d45 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
  60. 7f53a50 Issue #12459: time.sleep() now raises a ValueError if the sleep length is by Victor Stinner · 13 years ago
  61. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago
  62. 9122fdd Issue #9642: Fix the definition of time.clock() on Windows by Victor Stinner · 13 years ago
  63. 48b1ce5 Issue #12462: time.sleep() now calls immediatly the (Python) signal handler if by Victor Stinner · 13 years ago
  64. 66746cb Removed unused variable by Alexander Belopolsky · 13 years ago
  65. 03163ac Issue #11930: Remove deprecated time.accept2dyear. by Alexander Belopolsky · 13 years ago
  66. 736975a merge from 3.2 by Senthil Kumaran · 13 years ago
  67. ae664fb Merge from 3.1 by Senthil Kumaran · 13 years ago
  68. 8f377a3 Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya. by Senthil Kumaran · 13 years ago
  69. 499dfcf Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead of by Victor Stinner · 13 years ago
  70. 6f0e4f9 time.strftime(): replace PyErr_Format() by PyErr_SetString() by Victor Stinner · 13 years ago
  71. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  72. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  73. 4fb96f4 Merged revisions 87919 via svnmerge from by Alexander Belopolsky · 13 years ago
  74. 43b2f45 Merged revisions 87136,87221,87256,87337-87338,87571,87839,88164 via svnmerge from by R. David Murray · 13 years ago
  75. b7d40d1 Issue #1726687: time.mktime() will now correctly compute value one by Alexander Belopolsky · 13 years ago
  76. 06ec45e Issue #10864: limit year to [1; 9999] for strftime() on Solaris by Victor Stinner · 13 years ago
  77. 301f121 Issue #1777412: Remove all limits on tm_year from time.strftime() by Victor Stinner · 13 years ago
  78. 73ea29c Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900 by Victor Stinner · 13 years ago
  79. 0dd06f4 Fixed error handling branches. Thanks Victor Stinner for pointing this out. by Alexander Belopolsky · 13 years ago
  80. b8bb466 Issue #1777412: extended year range of strftime down to 1000. by Alexander Belopolsky · 13 years ago
  81. c64708a Issue #10827: Changed the rules for 2-digit years. The time.asctime by Alexander Belopolsky · 13 years ago
  82. 610e544 Further simplify gettmarg() by Alexander Belopolsky · 13 years ago
  83. ecbb8dc Use PyOS_snprintf for better portability. by Alexander Belopolsky · 13 years ago
  84. a686725 - time.accept2dyear = True is now equivalent to time.accept2dyear = 1 by Alexander Belopolsky · 13 years ago
  85. 5da468f Whitespace cleanup by Alexander Belopolsky · 13 years ago
  86. b9588b5 Issue #8013: time.asctime and time.ctime no longer call system asctime by Alexander Belopolsky · 13 years ago
  87. d4bf48b Merged revisions 87648,87656 via svnmerge from by Alexander Belopolsky · 14 years ago
  88. e10608c #8013 follow-up: by Georg Brandl · 14 years ago
  89. e2dc082 Issue #8013: Fixed time.asctime segfault when OS's asctime fails by Alexander Belopolsky · 14 years ago
  90. 4d55bf9 #10699: fix docstring for tzset: it does not take a parameter by R. David Murray · 14 years ago
  91. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  92. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  93. ef12810 time: fix gcc warning by Victor Stinner · 14 years ago
  94. 38e2996 Issue #6608: time.asctime is now checking struct tm fields its input by Alexander Belopolsky · 14 years ago
  95. b290478 Issue #9979: Use PyUnicode_AsWideCharString() in time.strftime() by Victor Stinner · 14 years ago
  96. 6fc4ade Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API by Alexander Belopolsky · 14 years ago
  97. d95a586 Issue #9012: "Separate compilation of time and datetime modules." by Alexander Belopolsky · 14 years ago
  98. 69f3fd0 Merged revisions 81756 via svnmerge from by Alexander Belopolsky · 14 years ago
  99. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  100. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago