1. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  2. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  3. 1ba3114 Added __format__ method to datetime.datetime, datetime.date, and datetime.time. by Eric Smith · 17 years ago
  4. 1fe5f38 Remove checking redundantly for checks of PyInt and PyLong. by Neal Norwitz · 17 years ago
  5. e8a17aa Use the correct type for variables corresponding to 'u' formats. by Guido van Rossum · 17 years ago
  6. 908c871 Fix some refleaks (and format/error checking) by Neal Norwitz · 17 years ago
  7. fd53fd6 Fixes by Ero Carrera to remove PyString_. I had to massage a few problems away. by Guido van Rossum · 17 years ago
  8. 0661009 Get rid of some dead code and unneeded XXX comments by Neal. by Guido van Rossum · 17 years ago
  9. aea70e0 Fix the refleak in strftime when converting a %Z with a user defined tzinfo. by Neal Norwitz · 17 years ago
  10. e9fb515 Fix refcount bug in make_Zreplacement(). by Guido van Rossum · 17 years ago
  11. 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
  12. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  13. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  14. d094130 Revert r56044 (which changed the %c format specifier to accept a by Walter Dörwald · 17 years ago
  15. bc1f886 Change %c format specifier for PyArg_ParseTuple() so that it accepts by Walter Dörwald · 17 years ago
  16. baf853c Change timedelta.__str__() to return a unicode object. by Walter Dörwald · 17 years ago
  17. bafa137 Change isoformat() methods to return unicode strings. by Walter Dörwald · 17 years ago
  18. 4af32b3 Change format_ctime() to return unicode (i.e. by Walter Dörwald · 17 years ago
  19. d8595fe Refactor to avoid ultra-deeply-nested code. by Guido van Rossum · 17 years ago
  20. e3d1d41 Fix datetime and its test. by Guido van Rossum · 17 years ago
  21. 517bcfe Simplify append_keyword_tzinfo() by using PyUnicode_FromFormat(). by Walter Dörwald · 17 years ago
  22. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  23. c2f6a58 Remove unused variables. by Walter Dörwald · 17 years ago
  24. 7569dfe Add a format specifier %R to PyUnicode_FromFormat(), which embeds by Walter Dörwald · 17 years ago
  25. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  26. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  27. bce56a6 Fix some miscellaneous places that incorrectly insisted on str8. by Guido van Rossum · 17 years ago
  28. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  29. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 18 years ago
  30. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  31. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  32. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  33. 1996059 Fix the datetime comparison conundrum. by Guido van Rossum · 18 years ago
  34. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  35. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  36. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  37. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  38. 227b533 Finish getting rid of statichere/staticforward by Neal Norwitz · 18 years ago
  39. 02cbf4a More unconsting. by Martin v. Löwis · 19 years ago
  40. e810fe2 Remove two instances of trailing commas. Resolves patch #1209781. by Georg Brandl · 19 years ago
  41. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  42. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  43. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  44. f4afb21 similar to SF bug 847019: a quick check in the time() constructor, which by Armin Rigo · 19 years ago
  45. 0af3ade Add strptime() constructor to datetime class. Thanks to Josh Spoerri for by Skip Montanaro · 20 years ago
  46. 3a4231d Bug #1087216: datetime module documentation missing critical detail by Raymond Hettinger · 20 years ago
  47. 528ca53 SF bug #1028306: date-datetime comparison by Tim Peters · 20 years ago
  48. 9ddf40b SF patch 876130: add C API to datetime module, from Anthony Tuininga. by Tim Peters · 20 years ago
  49. 1b6f7a9 Bug 975996: Add _PyTime_DoubleToTimet to C API by Tim Peters · 20 years ago
  50. 604c013 SF 952807: Unpickling pickled instances of subclasses of datetime.date, by Tim Peters · 20 years ago
  51. 3f60629 SF bug 847019 datetime.datetime initialization needs more strict checking by Tim Peters · 20 years ago
  52. d1080a3 Have strftime() check its time tuple argument to make sure the tuple's values by Brett Cannon · 21 years ago
  53. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  54. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  55. f69d9f6 SF bug #761337: datetime.strftime fails on trivial format string by Raymond Hettinger · 21 years ago
  56. 03eaf8b Added more words about the abuse of the tp_alloc nitems argument by Tim Peters · 21 years ago
  57. b0c854d datetime.timedelta is now subclassable in Python. The new test shows by Tim Peters · 21 years ago
  58. a98924a datetime.datetime and datetime.time can now be subclassed in Python. Brr. by Tim Peters · 21 years ago
  59. 4c53013 Turns out there wasn't a need to define tp_free for any of the types here. by Tim Peters · 21 years ago
  60. 0490011 Stopped using the old macro form of _PyObject_Del. by Tim Peters · 21 years ago
  61. e2df5ff SF patch 731504: Typo in datetimemodule.c comment. by Tim Peters · 21 years ago
  62. 8b7a9a3 The date class is now properly subclassable. (SF bug #720908) by Guido van Rossum · 21 years ago
  63. aa7d849 timedelta comparison and datetime addition: as the Python implementation by Tim Peters · 22 years ago
  64. 07534a6 Comparison for timedelta, time, date and datetime objects: __eq__ and by Tim Peters · 22 years ago
  65. ce3d34d Whitespace normalization by Neal Norwitz · 22 years ago
  66. 70533e2 New functions alloc_{time,datetime}. Got rid of all setstate-like by Tim Peters · 22 years ago
  67. b57f8f0 There's no good reason for datetime objects to expose __getstate__() by Tim Peters · 22 years ago
  68. 1f1b2d2 Removed all uses of the out-of-favor __safe_for_unpickling__ magic by Tim Peters · 22 years ago
  69. 371935f All over: changed comments to reflect pickling is straightforward now, by Tim Peters · 22 years ago
  70. 8a60c22 delta_setstate(): This waS no longer referenced, so nukeit. by Tim Peters · 22 years ago
  71. 506be28 The various datetime object __setstate__() methods are no longer public by Tim Peters · 22 years ago
  72. abc7cd2 Backward branches are disgusting, at least when a forward branch by Tim Peters · 22 years ago
  73. 177e41a Change the approach to pickling to use __reduce__ everywhere. Most by Guido van Rossum · 22 years ago
  74. 8d81a01 date and datetime comparison: when we don't know how to by Tim Peters · 22 years ago
  75. 8bb5ad2 Updated the astimezone() proof to recover from all the last week's by Tim Peters · 22 years ago
  76. 2fbe537 Fix typo by Neal Norwitz · 22 years ago
  77. 2a44a8d SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1). by Tim Peters · 22 years ago
  78. 10cadce Reimplemented datetime.now() to be useful. by Tim Peters · 22 years ago
  79. b1049e8 fromutc(): Repair incorrect failure return, as noted by NealN. Thanks! by Tim Peters · 22 years ago
  80. 52dcce2 Bringing the code and test suite into line with doc and NEWS changes by Tim Peters · 22 years ago
  81. 327098a New rule for tzinfo subclasses handling both standard and daylight time: by Tim Peters · 22 years ago
  82. a9bc168 Got rid of the internal datetimetz type. by Tim Peters · 22 years ago
  83. a032d2e Minor fiddling to make the next part easier. Introduced an internal by Tim Peters · 22 years ago
  84. 8e914d9 Get rid of compiler warnings by Neal Norwitz · 22 years ago
  85. 37f3982 Got rid of the timetz type entirely. This was a bit trickier than I by Tim Peters · 22 years ago
  86. 33e0f38 Removed more now-pointless pickle code. by Tim Peters · 22 years ago
  87. 7d4b315 Deleted pickle/unpickle code for the old datetime and time classes -- it's by Tim Peters · 22 years ago
  88. 0bf60bd Utterly minimal changes to collapse datetimetz into datetime, and timetz by Tim Peters · 22 years ago
  89. b8941f2 Added a couple of casts to make this compile with CodeWarrior. by Jack Jansen · 22 years ago
  90. 75a6e3b datetime_from_timet_and_us(): ignore leap seconds if the platform by Tim Peters · 22 years ago
  91. adf6420 A new implementation of astimezone() that does what we agreed on in all by Tim Peters · 22 years ago
  92. 506a224 Fix compiler warning by Neal Norwitz · 22 years ago
  93. 4fede1a Completed astimezone()'s correctness proof. This also proves we can get by Tim Peters · 22 years ago
  94. 397301e The tzinfo methods utcoffset() and dst() must return a timedelta object by Tim Peters · 22 years ago
  95. 710fb15 astimezone() internals: if utcoffset() returns a duration, complain if by Tim Peters · 22 years ago
  96. c5dc4da The astimezone() correctness proof endured much pain to prove what by Tim Peters · 22 years ago
  97. 5d644dd SF bug 661086: datetime.today() truncates microseconds. by Tim Peters · 22 years ago
  98. c3bb26a Completed astimezone's correctness proof. That doesn't mean it's by Tim Peters · 22 years ago
  99. f361515 A quicker astimezone() implementation, rehabilitating an earlier by Tim Peters · 22 years ago
  100. b5a16f3 datetimetz_astimezone(): Speed optimizations -- although I'd rather by Tim Peters · 22 years ago