1. 1ba3114 Added __format__ method to datetime.datetime, datetime.date, and datetime.time. by Eric Smith · 17 years ago
  2. 39478e8 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  3. 04110fb Merged revisions 57221-57391 via svnmerge from by Guido van Rossum · 17 years ago
  4. be6fe54 Make test_datetime.py pass by killing all references to cPickle in it. by Guido van Rossum · 17 years ago
  5. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  6. e61fd5b Patch by Christian Heimes to change self.assert_(x == y) into by Guido van Rossum · 17 years ago
  7. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  8. bc1f886 Change %c format specifier for PyArg_ParseTuple() so that it accepts by Walter Dörwald · 17 years ago
  9. e3d1d41 Fix datetime and its test. by Guido van Rossum · 17 years ago
  10. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  11. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  12. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  13. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  14. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  15. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  16. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  17. 1996059 Fix the datetime comparison conundrum. by Guido van Rossum · 18 years ago
  18. bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 18 years ago
  19. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  20. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  21. f4afb21 similar to SF bug 847019: a quick check in the time() constructor, which by Armin Rigo · 19 years ago
  22. 5a8a037 Use descriptors. by Guido van Rossum · 20 years ago
  23. 0af3ade Add strptime() constructor to datetime class. Thanks to Josh Spoerri for by Skip Montanaro · 20 years ago
  24. 528ca53 SF bug #1028306: date-datetime comparison by Tim Peters · 20 years ago
  25. 1b6f7a9 Bug 975996: Add _PyTime_DoubleToTimet to C API by Tim Peters · 20 years ago
  26. 604c013 SF 952807: Unpickling pickled instances of subclasses of datetime.date, by Tim Peters · 20 years ago
  27. 3f60629 SF bug 847019 datetime.datetime initialization needs more strict checking by Tim Peters · 20 years ago
  28. f69d9f6 SF bug #761337: datetime.strftime fails on trivial format string by Raymond Hettinger · 21 years ago
  29. b0c854d datetime.timedelta is now subclassable in Python. The new test shows by Tim Peters · 21 years ago
  30. a98924a datetime.datetime and datetime.time can now be subclassed in Python. Brr. by Tim Peters · 21 years ago
  31. eb1a496 test_subclass_date(): Beefed this up, to check that new instance by Tim Peters · 21 years ago
  32. 8b7a9a3 The date class is now properly subclassable. (SF bug #720908) by Guido van Rossum · 21 years ago
  33. f2715e0 Whitespace normalization. by Tim Peters · 21 years ago
  34. 68124bb The Python implementation of datetime was changed in ways that no longer by Tim Peters · 22 years ago
  35. 07534a6 Comparison for timedelta, time, date and datetime objects: __eq__ and by Tim Peters · 22 years ago
  36. 275666f Merge the test part of the below checkin to the sandbox and Zope3, so by Guido van Rossum · 22 years ago
  37. 8440761 SF bug 680864: test_datetime fails for non-unix epoch by Tim Peters · 22 years ago
  38. 35ad641 Build pickler_choices list in a lazier way. by Tim Peters · 22 years ago
  39. 49992f9 cPickle now implements enough of protocol 2 to enable all cross-pickling tests. by Guido van Rossum · 22 years ago
  40. b57f8f0 There's no good reason for datetime objects to expose __getstate__() by Tim Peters · 22 years ago
  41. 96940c9 Changed the tests to stop using __setstate__(). __setstate__() no by Tim Peters · 22 years ago
  42. 177e41a Change the approach to pickling to use __reduce__ everywhere. Most by Guido van Rossum · 22 years ago
  43. 8d81a01 date and datetime comparison: when we don't know how to by Tim Peters · 22 years ago
  44. 2a44a8d SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1). by Tim Peters · 22 years ago
  45. 10cadce Reimplemented datetime.now() to be useful. by Tim Peters · 22 years ago
  46. 52dcce2 Bringing the code and test suite into line with doc and NEWS changes by Tim Peters · 22 years ago
  47. 327098a New rule for tzinfo subclasses handling both standard and daylight time: by Tim Peters · 22 years ago
  48. a9bc168 Got rid of the internal datetimetz type. by Tim Peters · 22 years ago
  49. 37f3982 Got rid of the timetz type entirely. This was a bit trickier than I by Tim Peters · 22 years ago
  50. 0bf60bd Utterly minimal changes to collapse datetimetz into datetime, and timetz by Tim Peters · 22 years ago
  51. adf6420 A new implementation of astimezone() that does what we agreed on in all by Tim Peters · 22 years ago
  52. 397301e The tzinfo methods utcoffset() and dst() must return a timedelta object by Tim Peters · 22 years ago
  53. 710fb15 astimezone() internals: if utcoffset() returns a duration, complain if by Tim Peters · 22 years ago
  54. f361515 A quicker astimezone() implementation, rehabilitating an earlier by Tim Peters · 22 years ago
  55. 36087ed The failure of the last-second addition to the timezone coversion test is by Tim Peters · 22 years ago
  56. 521fc15 A new, and much hairier, implementation of astimezone(), building on by Tim Peters · 22 years ago
  57. bad8ff0 A step on the way to making tzinfo classes writable by mortals: get rid by Tim Peters · 22 years ago
  58. 31cc315 Added tests that conversion to our own timezone is always an identity, by Tim Peters · 22 years ago
  59. 1024bf8 Beefed up the timezone conversion test by adding a phony UTC zone that's by Tim Peters · 22 years ago
  60. 621818b A start at non-trivial (== DST-aware) tests of timezone conversion. by Tim Peters · 22 years ago
  61. 60c76e4 Make comparison and subtraction of aware objects ignore tzinfo if the by Tim Peters · 22 years ago
  62. 4c0db78 Added tests to ensure that timetz comparison, and datetimetz by Tim Peters · 22 years ago
  63. 80475bb Implemented datetime.astimezone() and datetimetz.astimezone(). by Tim Peters · 22 years ago
  64. 6578dc9 Whitespace normalization. by Tim Peters · 22 years ago
  65. 12bf339 Implemented .replace() methods for date, datetime, datetimetz, time and timetz. by Tim Peters · 22 years ago
  66. d684415 I give up: unless I write my own strftime by hand, datetime just can't by Tim Peters · 22 years ago
  67. 855fe88 Implemented a Wiki suggestion: by Tim Peters · 22 years ago
  68. b92bb71 Added test to ensure that non-string result from dst() raises TypeError. by Tim Peters · 22 years ago
  69. fb8472c Changes sufficient so that pickles written by the Python implementation by Tim Peters · 22 years ago
  70. 328fff7 format_utcoffset(): The natural type of the buflen arg is size_t, so used that. by Tim Peters · 22 years ago
  71. cfd4a8b Made this a little more compatible w/ the sandbox version, which is by Tim Peters · 22 years ago
  72. 2a799bf datetime escapes the sandbox. The Windows build is all set. I leave it by Tim Peters · 22 years ago