1. 03163ac Issue #11930: Remove deprecated time.accept2dyear. by Alexander Belopolsky · 13 years ago
  2. ae664fb Merge from 3.1 by Senthil Kumaran · 13 years ago
  3. 8f377a3 Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya. by Senthil Kumaran · 13 years ago
  4. 13ed2ea Issue #10864 has been fixed: remove the workaround by Victor Stinner · 13 years ago
  5. 622ce12 Merged revisions 87921 via svnmerge from by Alexander Belopolsky · 14 years ago
  6. 4fb96f4 Merged revisions 87919 via svnmerge from by Alexander Belopolsky · 14 years ago
  7. a689241 This should fix mktime test on Windows by Alexander Belopolsky · 14 years ago
  8. 31c5dd6 Make mktime test more robust. by Alexander Belopolsky · 14 years ago
  9. b7d40d1 Issue #1726687: time.mktime() will now correctly compute value one by Alexander Belopolsky · 14 years ago
  10. 301f121 Issue #1777412: Remove all limits on tm_year from time.strftime() by Victor Stinner · 14 years ago
  11. af5aee5 Issue #1777412: fix test_time for Mac OS X and OpenIndiana by Victor Stinner · 14 years ago
  12. 7369132 Issue #1777412: test large years value for strftime('%Y') by Victor Stinner · 14 years ago
  13. 73ea29c Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900 by Victor Stinner · 14 years ago
  14. 0dd06f4 Fixed error handling branches. Thanks Victor Stinner for pointing this out. by Alexander Belopolsky · 14 years ago
  15. c64708a Issue #10827: Changed the rules for 2-digit years. The time.asctime by Alexander Belopolsky · 14 years ago
  16. 610e544 Further simplify gettmarg() by Alexander Belopolsky · 14 years ago
  17. a686725 - time.accept2dyear = True is now equivalent to time.accept2dyear = 1 by Alexander Belopolsky · 14 years ago
  18. b996f74 test_time: assertEquals => assertEqual by Victor Stinner · 14 years ago
  19. 1ec121d Fix test_time under Windows by Antoine Pitrou · 14 years ago
  20. 3fb97ae Fix exception catching. by Georg Brandl · 14 years ago
  21. ecebdc7 Issue #8013: Fix time.ctime test failure on 32-bit platforms. by Alexander Belopolsky · 14 years ago
  22. b9588b5 Issue #8013: time.asctime and time.ctime no longer call system asctime by Alexander Belopolsky · 14 years ago
  23. 622eb17 Issue 10814: time.asctime test will now use a valid day with out of range year. by Alexander Belopolsky · 14 years ago
  24. d4bf48b Merged revisions 87648,87656 via svnmerge from by Alexander Belopolsky · 14 years ago
  25. e10608c #8013 follow-up: by Georg Brandl · 14 years ago
  26. 3e913c9 Issue #8013: Fixed test by Alexander Belopolsky · 14 years ago
  27. e2dc082 Issue #8013: Fixed time.asctime segfault when OS's asctime fails by Alexander Belopolsky · 14 years ago
  28. f3d082c Merged revisions 87222 via svnmerge from by R. David Murray · 14 years ago
  29. 6ecf76e Use skipIf instead of a return when attribute doesn't exist. by R. David Murray · 14 years ago
  30. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  31. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  32. 38e2996 Issue #6608: time.asctime is now checking struct tm fields its input by Alexander Belopolsky · 14 years ago
  33. 7d12c55 Merged revisions 75011 via svnmerge from by Brett Cannon · 15 years ago
  34. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  35. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  36. a6a9c4d 5562 -> 3061. by Martin v. Löwis · 15 years ago
  37. 1b01ccd Issue #5562: Use wcsftime for time.strftime where available. by Martin v. Löwis · 15 years ago
  38. 7f6b4f8 Make sure time.strptime only accepts strings (and document the fact like by Brett Cannon · 15 years ago
  39. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  40. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  41. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  42. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  43. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  44. f901abd allow ctime(), gmtime(), and localtime() to take None as equivalent to an omitted arg by Fred Drake · 20 years ago
  45. 1b6f7a9 Bug 975996: Add _PyTime_DoubleToTimet to C API by Tim Peters · 20 years ago
  46. d1080a3 Have strftime() check its time tuple argument to make sure the tuple's values by Brett Cannon · 20 years ago
  47. 0eadaac Whitespace normalization. by Tim Peters · 21 years ago
  48. 7f2588c SF patch #706707, time.tzset standards compliance update by Stuart Bishop by Neal Norwitz · 21 years ago
  49. d2b738e If time.tzset doesn't exist, don't test it. by Guido van Rossum · 21 years ago
  50. d11b62e - New function time.tzset() provides access to the C library tzet() by Guido van Rossum · 21 years ago
  51. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  52. 00efe7e Pure Python strptime implementation by Brett Cannon. See SF patch 474274. by Guido van Rossum · 22 years ago
  53. 4eaf50f test_mktime(): Removed. This wasn't really testing anything useful by Barry Warsaw · 22 years ago
  54. 2e2be37 Change the PyUnit-based tests to use the test_main() approach. This by Fred Drake · 23 years ago
  55. bc56198 Convert time module tests to PyUnit. by Fred Drake · 23 years ago
  56. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  57. 41360a4 Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  58. 6a99984 Use long() instead of int() to compare mktime(localtime(t) with t... by Guido van Rossum · 27 years ago
  59. e703842 Tweaks to cope with strftime returning 0 without error for %Z by Guido van Rossum · 27 years ago
  60. ad183bb Removed nonstandard strftime formats (strftime is tested more by Guido van Rossum · 28 years ago
  61. b0c2232 test of time module. not terribly fancy, but it does touch every by Barry Warsaw · 28 years ago