- 07019bc Issue #11576: Fixed timedelta subtraction glitch on big timedelta values by Alexander Belopolsky · 14 years ago
- 1f6e225 Revert r81681 (issue 8810). by Alexander Belopolsky · 14 years ago
- 5e2b27b Issue8810: Clearing up docstring for tzinfo.utcoffset. by Sean Reifscheider · 14 years ago
- 9292ee0 Issue #7150: Raise OverflowError if the result of adding or subtracting by Alexander Belopolsky · 14 years ago
- c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
- 7000e9e Issue #8644: Improve accuracy of timedelta.total_seconds method. by Mark Dickinson · 15 years ago
- 87ab6ad Prevent a possible NULL de-reference and an unneeded variable assignment. by Brett Cannon · 15 years ago
- c1f842b Fix a gcc warning introduced by r79397. by Victor Stinner · 15 years ago
- 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 15 years ago
- 8645a5c #7413: Passing '\0' as the separator to datetime.datetime.isoformat() by Amaury Forgeot d'Arc · 15 years ago
- bcfaf80 Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning by Antoine Pitrou · 15 years ago
- 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 16 years ago
- 99a3dce More reverting of r63675 per the mailing list discussions. This restores by Gregory P. Smith · 16 years ago
- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
- 137d824 Fix issue 2782: be less strict about the format string type in strftime. by Gregory P. Smith · 16 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- f13572d Use a buffer large enough to ensure we don't overrun, even if the value by Neal Norwitz · 17 years ago
- fc070d2 add %f format to datetime - issue 1158 by Skip Montanaro · 17 years ago
- a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
- 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 17 years ago
- e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
- a84dcd7 Stop using METH_OLDARGS implicitly by Neal Norwitz · 17 years ago
- 7a0da19 Complete revamp of PCBuild8 directory. Use subdirectories for each project under the main pcbuild solution. Now make extensive use of property sheets to simplify project configuration. x64 build fully supported, and the process for building PGO version (Profiler Guided Optimization) simplified. All projects are now present, except _ssl, which needs to be reimplemented. Also, some of the projects that require external libraries need extra work to fully compile on x64. by Kristján Valur Jónsson · 18 years ago
- 2054ee9 Patch #1646728: datetime.fromtimestamp fails with negative by Guido van Rossum · 18 years ago
- 4c11a92 Bug #1653736: Complain about keyword arguments to time.isoformat. by Martin v. Löwis · 18 years ago
- 4ddfcd3 Bug #1556784: allow format strings longer than 127 characters in by Georg Brandl · 18 years ago
- 6d78a58 Bug #1478429: make datetime.datetime.fromtimestamp accept every float, by Georg Brandl · 19 years ago
- 14f8899 C++ compiler cleanup: "typename" is a C++ keyword by Skip Montanaro · 19 years ago
- 3cfea2d Coverity-found bug: datetime_strptime() failed to check for NULL return from by Thomas Wouters · 19 years ago
- d5b0c9b Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace() by Neal Norwitz · 19 years ago
- 02cbf4a More unconsting. by Martin v. Löwis · 19 years ago
- e810fe2 Remove two instances of trailing commas. Resolves patch #1209781. by Georg Brandl · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- f4afb21 similar to SF bug 847019: a quick check in the time() constructor, which by Armin Rigo · 19 years ago
- 0af3ade Add strptime() constructor to datetime class. Thanks to Josh Spoerri for by Skip Montanaro · 20 years ago
- 3a4231d Bug #1087216: datetime module documentation missing critical detail by Raymond Hettinger · 20 years ago
- 528ca53 SF bug #1028306: date-datetime comparison by Tim Peters · 20 years ago
- 9ddf40b SF patch 876130: add C API to datetime module, from Anthony Tuininga. by Tim Peters · 20 years ago
- 1b6f7a9 Bug 975996: Add _PyTime_DoubleToTimet to C API by Tim Peters · 20 years ago
- 604c013 SF 952807: Unpickling pickled instances of subclasses of datetime.date, by Tim Peters · 20 years ago
- 3f60629 SF bug 847019 datetime.datetime initialization needs more strict checking by Tim Peters · 21 years ago
- d1080a3 Have strftime() check its time tuple argument to make sure the tuple's values by Brett Cannon · 21 years ago
- f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
- 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
- f69d9f6 SF bug #761337: datetime.strftime fails on trivial format string by Raymond Hettinger · 21 years ago
- 03eaf8b Added more words about the abuse of the tp_alloc nitems argument by Tim Peters · 21 years ago
- b0c854d datetime.timedelta is now subclassable in Python. The new test shows by Tim Peters · 21 years ago
- a98924a datetime.datetime and datetime.time can now be subclassed in Python. Brr. by Tim Peters · 21 years ago
- 4c53013 Turns out there wasn't a need to define tp_free for any of the types here. by Tim Peters · 21 years ago
- 0490011 Stopped using the old macro form of _PyObject_Del. by Tim Peters · 21 years ago
- e2df5ff SF patch 731504: Typo in datetimemodule.c comment. by Tim Peters · 22 years ago
- 8b7a9a3 The date class is now properly subclassable. (SF bug #720908) by Guido van Rossum · 22 years ago
- aa7d849 timedelta comparison and datetime addition: as the Python implementation by Tim Peters · 22 years ago
- 07534a6 Comparison for timedelta, time, date and datetime objects: __eq__ and by Tim Peters · 22 years ago
- ce3d34d Whitespace normalization by Neal Norwitz · 22 years ago
- 70533e2 New functions alloc_{time,datetime}. Got rid of all setstate-like by Tim Peters · 22 years ago
- b57f8f0 There's no good reason for datetime objects to expose __getstate__() by Tim Peters · 22 years ago
- 1f1b2d2 Removed all uses of the out-of-favor __safe_for_unpickling__ magic by Tim Peters · 22 years ago
- 371935f All over: changed comments to reflect pickling is straightforward now, by Tim Peters · 22 years ago
- 8a60c22 delta_setstate(): This waS no longer referenced, so nukeit. by Tim Peters · 22 years ago
- 506be28 The various datetime object __setstate__() methods are no longer public by Tim Peters · 22 years ago
- abc7cd2 Backward branches are disgusting, at least when a forward branch by Tim Peters · 22 years ago
- 177e41a Change the approach to pickling to use __reduce__ everywhere. Most by Guido van Rossum · 22 years ago
- 8d81a01 date and datetime comparison: when we don't know how to by Tim Peters · 22 years ago
- 8bb5ad2 Updated the astimezone() proof to recover from all the last week's by Tim Peters · 22 years ago
- 2fbe537 Fix typo by Neal Norwitz · 22 years ago
- 2a44a8d SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1). by Tim Peters · 22 years ago
- 10cadce Reimplemented datetime.now() to be useful. by Tim Peters · 22 years ago
- b1049e8 fromutc(): Repair incorrect failure return, as noted by NealN. Thanks! by Tim Peters · 22 years ago
- 52dcce2 Bringing the code and test suite into line with doc and NEWS changes by Tim Peters · 22 years ago
- 327098a New rule for tzinfo subclasses handling both standard and daylight time: by Tim Peters · 22 years ago
- a9bc168 Got rid of the internal datetimetz type. by Tim Peters · 22 years ago
- a032d2e Minor fiddling to make the next part easier. Introduced an internal by Tim Peters · 22 years ago
- 8e914d9 Get rid of compiler warnings by Neal Norwitz · 22 years ago
- 37f3982 Got rid of the timetz type entirely. This was a bit trickier than I by Tim Peters · 22 years ago
- 33e0f38 Removed more now-pointless pickle code. by Tim Peters · 22 years ago
- 7d4b315 Deleted pickle/unpickle code for the old datetime and time classes -- it's by Tim Peters · 22 years ago
- 0bf60bd Utterly minimal changes to collapse datetimetz into datetime, and timetz by Tim Peters · 22 years ago
- b8941f2 Added a couple of casts to make this compile with CodeWarrior. by Jack Jansen · 22 years ago
- 75a6e3b datetime_from_timet_and_us(): ignore leap seconds if the platform by Tim Peters · 22 years ago
- adf6420 A new implementation of astimezone() that does what we agreed on in all by Tim Peters · 22 years ago
- 506a224 Fix compiler warning by Neal Norwitz · 22 years ago
- 4fede1a Completed astimezone()'s correctness proof. This also proves we can get by Tim Peters · 22 years ago
- 397301e The tzinfo methods utcoffset() and dst() must return a timedelta object by Tim Peters · 22 years ago
- 710fb15 astimezone() internals: if utcoffset() returns a duration, complain if by Tim Peters · 22 years ago
- c5dc4da The astimezone() correctness proof endured much pain to prove what by Tim Peters · 22 years ago
- 5d644dd SF bug 661086: datetime.today() truncates microseconds. by Tim Peters · 22 years ago
- c3bb26a Completed astimezone's correctness proof. That doesn't mean it's by Tim Peters · 22 years ago
- f361515 A quicker astimezone() implementation, rehabilitating an earlier by Tim Peters · 22 years ago
- b5a16f3 datetimetz_astimezone(): Speed optimizations -- although I'd rather by Tim Peters · 22 years ago
- 521fc15 A new, and much hairier, implementation of astimezone(), building on by Tim Peters · 22 years ago
- e39a80c Bite the bullet on all the indirect timetz and datetimetz tzinfo methods: by Tim Peters · 22 years ago
- bad8ff0 A step on the way to making tzinfo classes writable by mortals: get rid by Tim Peters · 22 years ago
- 8702d5f And put back a little code duplication, in the form of asserts. by Tim Peters · 22 years ago
- 0023703 Squash recently-introduced code duplication. by Tim Peters · 22 years ago
- 60c76e4 Make comparison and subtraction of aware objects ignore tzinfo if the by Tim Peters · 22 years ago
- 80475bb Implemented datetime.astimezone() and datetimetz.astimezone(). by Tim Peters · 22 years ago