1. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  2. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  3. f69d9f6 SF bug #761337: datetime.strftime fails on trivial format string by Raymond Hettinger · 21 years ago
  4. 03eaf8b Added more words about the abuse of the tp_alloc nitems argument by Tim Peters · 21 years ago
  5. b0c854d datetime.timedelta is now subclassable in Python. The new test shows by Tim Peters · 21 years ago
  6. a98924a datetime.datetime and datetime.time can now be subclassed in Python. Brr. by Tim Peters · 21 years ago
  7. 4c53013 Turns out there wasn't a need to define tp_free for any of the types here. by Tim Peters · 21 years ago
  8. 0490011 Stopped using the old macro form of _PyObject_Del. by Tim Peters · 21 years ago
  9. e2df5ff SF patch 731504: Typo in datetimemodule.c comment. by Tim Peters · 21 years ago
  10. 8b7a9a3 The date class is now properly subclassable. (SF bug #720908) by Guido van Rossum · 21 years ago
  11. aa7d849 timedelta comparison and datetime addition: as the Python implementation by Tim Peters · 21 years ago
  12. 07534a6 Comparison for timedelta, time, date and datetime objects: __eq__ and by Tim Peters · 21 years ago
  13. ce3d34d Whitespace normalization by Neal Norwitz · 21 years ago
  14. 70533e2 New functions alloc_{time,datetime}. Got rid of all setstate-like by Tim Peters · 22 years ago
  15. b57f8f0 There's no good reason for datetime objects to expose __getstate__() by Tim Peters · 22 years ago
  16. 1f1b2d2 Removed all uses of the out-of-favor __safe_for_unpickling__ magic by Tim Peters · 22 years ago
  17. 371935f All over: changed comments to reflect pickling is straightforward now, by Tim Peters · 22 years ago
  18. 8a60c22 delta_setstate(): This waS no longer referenced, so nukeit. by Tim Peters · 22 years ago
  19. 506be28 The various datetime object __setstate__() methods are no longer public by Tim Peters · 22 years ago
  20. abc7cd2 Backward branches are disgusting, at least when a forward branch by Tim Peters · 22 years ago
  21. 177e41a Change the approach to pickling to use __reduce__ everywhere. Most by Guido van Rossum · 22 years ago
  22. 8d81a01 date and datetime comparison: when we don't know how to by Tim Peters · 22 years ago
  23. 8bb5ad2 Updated the astimezone() proof to recover from all the last week's by Tim Peters · 22 years ago
  24. 2fbe537 Fix typo by Neal Norwitz · 22 years ago
  25. 2a44a8d SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1). by Tim Peters · 22 years ago
  26. 10cadce Reimplemented datetime.now() to be useful. by Tim Peters · 22 years ago
  27. b1049e8 fromutc(): Repair incorrect failure return, as noted by NealN. Thanks! by Tim Peters · 22 years ago
  28. 52dcce2 Bringing the code and test suite into line with doc and NEWS changes by Tim Peters · 22 years ago
  29. 327098a New rule for tzinfo subclasses handling both standard and daylight time: by Tim Peters · 22 years ago
  30. a9bc168 Got rid of the internal datetimetz type. by Tim Peters · 22 years ago
  31. a032d2e Minor fiddling to make the next part easier. Introduced an internal by Tim Peters · 22 years ago
  32. 8e914d9 Get rid of compiler warnings by Neal Norwitz · 22 years ago
  33. 37f3982 Got rid of the timetz type entirely. This was a bit trickier than I by Tim Peters · 22 years ago
  34. 33e0f38 Removed more now-pointless pickle code. by Tim Peters · 22 years ago
  35. 7d4b315 Deleted pickle/unpickle code for the old datetime and time classes -- it's by Tim Peters · 22 years ago
  36. 0bf60bd Utterly minimal changes to collapse datetimetz into datetime, and timetz by Tim Peters · 22 years ago
  37. b8941f2 Added a couple of casts to make this compile with CodeWarrior. by Jack Jansen · 22 years ago
  38. 75a6e3b datetime_from_timet_and_us(): ignore leap seconds if the platform by Tim Peters · 22 years ago
  39. adf6420 A new implementation of astimezone() that does what we agreed on in all by Tim Peters · 22 years ago
  40. 506a224 Fix compiler warning by Neal Norwitz · 22 years ago
  41. 4fede1a Completed astimezone()'s correctness proof. This also proves we can get by Tim Peters · 22 years ago
  42. 397301e The tzinfo methods utcoffset() and dst() must return a timedelta object by Tim Peters · 22 years ago
  43. 710fb15 astimezone() internals: if utcoffset() returns a duration, complain if by Tim Peters · 22 years ago
  44. c5dc4da The astimezone() correctness proof endured much pain to prove what by Tim Peters · 22 years ago
  45. 5d644dd SF bug 661086: datetime.today() truncates microseconds. by Tim Peters · 22 years ago
  46. c3bb26a Completed astimezone's correctness proof. That doesn't mean it's by Tim Peters · 22 years ago
  47. f361515 A quicker astimezone() implementation, rehabilitating an earlier by Tim Peters · 22 years ago
  48. b5a16f3 datetimetz_astimezone(): Speed optimizations -- although I'd rather by Tim Peters · 22 years ago
  49. 521fc15 A new, and much hairier, implementation of astimezone(), building on by Tim Peters · 22 years ago
  50. e39a80c Bite the bullet on all the indirect timetz and datetimetz tzinfo methods: by Tim Peters · 22 years ago
  51. bad8ff0 A step on the way to making tzinfo classes writable by mortals: get rid by Tim Peters · 22 years ago
  52. 8702d5f And put back a little code duplication, in the form of asserts. by Tim Peters · 22 years ago
  53. 0023703 Squash recently-introduced code duplication. by Tim Peters · 22 years ago
  54. 60c76e4 Make comparison and subtraction of aware objects ignore tzinfo if the by Tim Peters · 22 years ago
  55. 80475bb Implemented datetime.astimezone() and datetimetz.astimezone(). by Tim Peters · 22 years ago
  56. 12bf339 Implemented .replace() methods for date, datetime, datetimetz, time and timetz. by Tim Peters · 22 years ago
  57. 2736285 call_utc_tzinfo_method(): Got rid of the label and the gotos. by Tim Peters · 22 years ago
  58. d684415 I give up: unless I write my own strftime by hand, datetime just can't by Tim Peters · 22 years ago
  59. 83b85f1 Python's strftime implementation does strange things with the year, by Tim Peters · 22 years ago
  60. 14b6941 classify_object(): Renamed more meaningfully, to classify_utcoffset(). by Tim Peters · 22 years ago
  61. 855fe88 Implemented a Wiki suggestion: by Tim Peters · 22 years ago
  62. 328fff7 format_utcoffset(): The natural type of the buflen arg is size_t, so used that. by Tim Peters · 22 years ago
  63. dfb8086 Fix another long vs int mismatch. test_datetime now passes on alpha by Neal Norwitz · 22 years ago
  64. 0b0f41c Fixed typo in string. by Tim Peters · 22 years ago
  65. c296c63 Fix crash on alphas due to mismatch between 'l' format and int variables. by Neal Norwitz · 22 years ago
  66. ba87347 delta_str(): Purged last uses of sprintf (in favor of PyOS_snprintf). by Tim Peters · 22 years ago
  67. 51cd8a2 "time_second" is apparently a #define on MacOSX. Renamed the (static) by Jack Jansen · 22 years ago
  68. bd43e91 Fix GCC warnings. It turns out two out of three pointed to real bugs! by Guido van Rossum · 22 years ago
  69. 2a799bf datetime escapes the sandbox. The Windows build is all set. I leave it by Tim Peters · 22 years ago