1. 655720e Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  2. 1438b98 Issue #19605: Use specific asserts in datetime tests by Serhiy Storchaka · 11 years ago
  3. 419e23c #18466: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 12 years ago
  4. 07019bc Issue #11576: Fixed timedelta subtraction glitch on big timedelta values by Alexander Belopolsky · 14 years ago
  5. c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  6. 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  7. 9292ee0 Issue #7150: Raise OverflowError if the result of adding or subtracting by Alexander Belopolsky · 15 years ago
  8. 58451d2 Issue #7879: Skip negative timestamps test on any Windows platform by Alexander Belopolsky · 15 years ago
  9. a26cf46 Issue #7879: Do not test negative timestamps on any Windows platform by Alexander Belopolsky · 15 years ago
  10. 7000e9e Issue #8644: Improve accuracy of timedelta.total_seconds method. by Mark Dickinson · 15 years ago
  11. b0f5adc use assert[Not]IsInstance where appropriate by Ezio Melotti · 15 years ago
  12. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  13. 8645a5c #7413: Passing '\0' as the separator to datetime.datetime.isoformat() by Amaury Forgeot d'Arc · 15 years ago
  14. bcfaf80 Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning by Antoine Pitrou · 15 years ago
  15. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  16. 8adc0b5 Fix recently introduced test cases. by Kristján Valur Jónsson · 16 years ago
  17. 1c62b65 Add tests for invalid format specifiers in strftime, and for handling of invalid file descriptors in the os module. by Kristján Valur Jónsson · 16 years ago
  18. 081bb45 Typo fix by Andrew M. Kuchling · 17 years ago
  19. 48361f5 Issue 2235: Py3k warnings are now emitted for classes that will no longer inherit a__hash__ implementation from a parent class in Python 3.x. The standard library and test suite have been updated to not emit these warnings. by Nick Coghlan · 17 years ago
  20. 137d824 Fix issue 2782: be less strict about the format string type in strftime. by Gregory P. Smith · 17 years ago
  21. fc070d2 add %f format to datetime - issue 1158 by Skip Montanaro · 17 years ago
  22. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
  23. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  24. 966bb8c Fix silly typo in test name. by Guido van Rossum · 18 years ago
  25. bec754c Remove functionality from test_datetime.test_main() that does reference count checking; 'regrtest.py -R' is the way to do this kind of testing. by Collin Winter · 18 years ago
  26. c2898c5 Standardize on test.test_support.run_unittest() (as opposed to a mix of run_unittest() and run_suite()). Also, add functionality to run_unittest() that admits usage of unittest.TestLoader.loadTestsFromModule(). by Collin Winter · 18 years ago
  27. f1200f8 Windows doesn't support negative timestamps. Skip the tests involving them by Guido van Rossum · 18 years ago
  28. 2054ee9 Patch #1646728: datetime.fromtimestamp fails with negative by Guido van Rossum · 18 years ago
  29. 4c11a92 Bug #1653736: Complain about keyword arguments to time.isoformat. by Martin v. Löwis · 18 years ago
  30. 4ddfcd3 Bug #1556784: allow format strings longer than 127 characters in by Georg Brandl · 19 years ago
  31. 6d78a58 Bug #1478429: make datetime.datetime.fromtimestamp accept every float, by Georg Brandl · 19 years ago
  32. d5b0c9b Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace() by Neal Norwitz · 19 years ago
  33. f4afb21 similar to SF bug 847019: a quick check in the time() constructor, which by Armin Rigo · 19 years ago
  34. 5a8a037 Use descriptors. by Guido van Rossum · 20 years ago
  35. 0af3ade Add strptime() constructor to datetime class. Thanks to Josh Spoerri for by Skip Montanaro · 20 years ago
  36. 528ca53 SF bug #1028306: date-datetime comparison by Tim Peters · 21 years ago
  37. 1b6f7a9 Bug 975996: Add _PyTime_DoubleToTimet to C API by Tim Peters · 21 years ago
  38. 604c013 SF 952807: Unpickling pickled instances of subclasses of datetime.date, by Tim Peters · 21 years ago
  39. 3f60629 SF bug 847019 datetime.datetime initialization needs more strict checking by Tim Peters · 21 years ago
  40. f69d9f6 SF bug #761337: datetime.strftime fails on trivial format string by Raymond Hettinger · 22 years ago
  41. b0c854d datetime.timedelta is now subclassable in Python. The new test shows by Tim Peters · 22 years ago
  42. a98924a datetime.datetime and datetime.time can now be subclassed in Python. Brr. by Tim Peters · 22 years ago
  43. eb1a496 test_subclass_date(): Beefed this up, to check that new instance by Tim Peters · 22 years ago
  44. 8b7a9a3 The date class is now properly subclassable. (SF bug #720908) by Guido van Rossum · 22 years ago
  45. f2715e0 Whitespace normalization. by Tim Peters · 22 years ago
  46. 68124bb The Python implementation of datetime was changed in ways that no longer by Tim Peters · 22 years ago
  47. 07534a6 Comparison for timedelta, time, date and datetime objects: __eq__ and by Tim Peters · 22 years ago
  48. 275666f Merge the test part of the below checkin to the sandbox and Zope3, so by Guido van Rossum · 22 years ago
  49. 8440761 SF bug 680864: test_datetime fails for non-unix epoch by Tim Peters · 22 years ago
  50. 35ad641 Build pickler_choices list in a lazier way. by Tim Peters · 22 years ago
  51. 49992f9 cPickle now implements enough of protocol 2 to enable all cross-pickling tests. by Guido van Rossum · 22 years ago
  52. b57f8f0 There's no good reason for datetime objects to expose __getstate__() by Tim Peters · 22 years ago
  53. 96940c9 Changed the tests to stop using __setstate__(). __setstate__() no by Tim Peters · 22 years ago
  54. 177e41a Change the approach to pickling to use __reduce__ everywhere. Most by Guido van Rossum · 22 years ago
  55. 8d81a01 date and datetime comparison: when we don't know how to by Tim Peters · 22 years ago
  56. 2a44a8d SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1). by Tim Peters · 22 years ago
  57. 10cadce Reimplemented datetime.now() to be useful. by Tim Peters · 22 years ago
  58. 52dcce2 Bringing the code and test suite into line with doc and NEWS changes by Tim Peters · 22 years ago
  59. 327098a New rule for tzinfo subclasses handling both standard and daylight time: by Tim Peters · 22 years ago
  60. a9bc168 Got rid of the internal datetimetz type. by Tim Peters · 22 years ago
  61. 37f3982 Got rid of the timetz type entirely. This was a bit trickier than I by Tim Peters · 22 years ago
  62. 0bf60bd Utterly minimal changes to collapse datetimetz into datetime, and timetz by Tim Peters · 22 years ago
  63. adf6420 A new implementation of astimezone() that does what we agreed on in all by Tim Peters · 22 years ago
  64. 397301e The tzinfo methods utcoffset() and dst() must return a timedelta object by Tim Peters · 22 years ago
  65. 710fb15 astimezone() internals: if utcoffset() returns a duration, complain if by Tim Peters · 22 years ago
  66. f361515 A quicker astimezone() implementation, rehabilitating an earlier by Tim Peters · 22 years ago
  67. 36087ed The failure of the last-second addition to the timezone coversion test is by Tim Peters · 22 years ago
  68. 521fc15 A new, and much hairier, implementation of astimezone(), building on by Tim Peters · 22 years ago
  69. bad8ff0 A step on the way to making tzinfo classes writable by mortals: get rid by Tim Peters · 22 years ago
  70. 31cc315 Added tests that conversion to our own timezone is always an identity, by Tim Peters · 22 years ago
  71. 1024bf8 Beefed up the timezone conversion test by adding a phony UTC zone that's by Tim Peters · 22 years ago
  72. 621818b A start at non-trivial (== DST-aware) tests of timezone conversion. by Tim Peters · 22 years ago
  73. 60c76e4 Make comparison and subtraction of aware objects ignore tzinfo if the by Tim Peters · 22 years ago
  74. 4c0db78 Added tests to ensure that timetz comparison, and datetimetz by Tim Peters · 22 years ago
  75. 80475bb Implemented datetime.astimezone() and datetimetz.astimezone(). by Tim Peters · 22 years ago
  76. 6578dc9 Whitespace normalization. by Tim Peters · 22 years ago
  77. 12bf339 Implemented .replace() methods for date, datetime, datetimetz, time and timetz. by Tim Peters · 22 years ago
  78. d684415 I give up: unless I write my own strftime by hand, datetime just can't by Tim Peters · 22 years ago
  79. 855fe88 Implemented a Wiki suggestion: by Tim Peters · 22 years ago
  80. b92bb71 Added test to ensure that non-string result from dst() raises TypeError. by Tim Peters · 22 years ago
  81. fb8472c Changes sufficient so that pickles written by the Python implementation by Tim Peters · 22 years ago
  82. 328fff7 format_utcoffset(): The natural type of the buflen arg is size_t, so used that. by Tim Peters · 22 years ago
  83. cfd4a8b Made this a little more compatible w/ the sandbox version, which is by Tim Peters · 22 years ago
  84. 2a799bf datetime escapes the sandbox. The Windows build is all set. I leave it by Tim Peters · 22 years ago