summaryrefslogtreecommitdiff
path: root/Lib/test/test_datetime.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #11576: Fixed timedelta subtraction glitch on big timedelta valuesAlexander Belopolsky2011-04-051-0/+7
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-3/+3
* Issue #7150: Raise OverflowError if the result of adding or subtractingAlexander Belopolsky2010-05-271-9/+10
* Issue #7879: Skip negative timestamps test on any Windows platformAlexander Belopolsky2010-05-261-7/+2
* Issue #7879: Do not test negative timestamps on any Windows platformAlexander Belopolsky2010-05-261-3/+3
* Issue #8644: Improve accuracy of timedelta.total_seconds method.Mark Dickinson2010-05-091-1/+8
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-16/+15
* use assert[Not]In where appropriateEzio Melotti2010-01-231-5/+2
* #7413: Passing '\0' as the separator to datetime.datetime.isoformat()Amaury Forgeot d'Arc2009-12-291-0/+1
* Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method ...Antoine Pitrou2009-11-251-0/+7
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-179/+179
* Fix recently introduced test cases.Kristján Valur Jónsson2009-01-151-3/+12
* Add tests for invalid format specifiers in strftime, and for handling of inva...Kristján Valur Jónsson2009-01-121-0/+8
* Typo fixAndrew M. Kuchling2008-10-031-1/+1
* Issue 2235: Py3k warnings are now emitted for classes that will no longer inh...Nick Coghlan2008-08-111-0/+1
* Fix issue 2782: be less strict about the format string type in strftime.Gregory P. Smith2008-06-021-0/+4
* add %f format to datetime - issue 1158Skip Montanaro2008-03-151-8/+9
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+76
* Fix silly typo in test name.Guido van Rossum2007-08-241-1/+1
* Remove functionality from test_datetime.test_main() that does reference count...Collin Winter2007-04-251-20/+1
* Standardize on test.test_support.run_unittest() (as opposed to a mix of run_u...Collin Winter2007-04-251-26/+8
* Windows doesn't support negative timestamps. Skip the tests involving themGuido van Rossum2007-03-071-0/+7
* Patch #1646728: datetime.fromtimestamp fails with negativeGuido van Rossum2007-03-061-0/+9
* Bug #1653736: Complain about keyword arguments to time.isoformat.Martin v. Löwis2007-02-081-0/+5
* Bug #1556784: allow format strings longer than 127 characters inGeorg Brandl2006-09-301-0/+1
* Bug #1478429: make datetime.datetime.fromtimestamp accept every float,Georg Brandl2006-04-281-0/+6
* Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace()Neal Norwitz2006-03-201-0/+11
* similar to SF bug 847019: a quick check in the time() constructor, whichArmin Rigo2005-11-071-0/+7
* Use descriptors.Guido van Rossum2005-01-161-1/+1
* Add strptime() constructor to datetime class. Thanks to Josh Spoerri forSkip Montanaro2005-01-131-0/+9
* SF bug #1028306: date-datetime comparisonTim Peters2004-09-161-0/+43
* Bug 975996: Add _PyTime_DoubleToTimet to C APITim Peters2004-06-201-0/+27
* SF 952807: Unpickling pickled instances of subclasses of datetime.date,Tim Peters2004-06-071-0/+34
* SF bug 847019 datetime.datetime initialization needs more strict checkingTim Peters2004-03-211-0/+20
* SF bug #761337: datetime.strftime fails on trivial format stringRaymond Hettinger2003-06-271-0/+1
* datetime.timedelta is now subclassable in Python. The new test showsTim Peters2003-05-171-0/+31
* datetime.datetime and datetime.time can now be subclassed in Python. Brr.Tim Peters2003-05-171-31/+131
* test_subclass_date(): Beefed this up, to check that new instanceTim Peters2003-05-171-2/+28
* The date class is now properly subclassable. (SF bug #720908)Guido van Rossum2003-04-141-0/+6
* Whitespace normalization.Tim Peters2003-02-191-11/+11
* The Python implementation of datetime was changed in ways that no longerTim Peters2003-02-081-31/+10
* Comparison for timedelta, time, date and datetime objects: __eq__ andTim Peters2003-02-071-18/+68
* Merge the test part of the below checkin to the sandbox and Zope3, soGuido van Rossum2003-02-071-0/+8
* SF bug 680864: test_datetime fails for non-unix epochTim Peters2003-02-061-12/+11
* Build pickler_choices list in a lazier way.Tim Peters2003-02-051-16/+5
* cPickle now implements enough of protocol 2 to enable allGuido van Rossum2003-02-031-3/+3
* There's no good reason for datetime objects to expose __getstate__()Tim Peters2003-02-011-12/+0
* Changed the tests to stop using __setstate__(). __setstate__() noTim Peters2003-01-311-65/+31