summaryrefslogtreecommitdiff
path: root/Lib/test/test_datetime.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Change the approach to pickling to use __reduce__ everywhere. MostGuido van Rossum2003-01-301-53/+49
* date and datetime comparison: when we don't know how toTim Peters2003-01-241-0/+38
* SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1).Tim Peters2003-01-231-1/+15
* Reimplemented datetime.now() to be useful.Tim Peters2003-01-231-2/+20
* Bringing the code and test suite into line with doc and NEWS changesTim Peters2003-01-231-28/+90
* New rule for tzinfo subclasses handling both standard and daylight time:Tim Peters2003-01-201-20/+27
* Got rid of the internal datetimetz type.Tim Peters2003-01-111-1/+1
* Got rid of the timetz type entirely. This was a bit trickier than ITim Peters2003-01-101-1/+1
* Utterly minimal changes to collapse datetimetz into datetime, and timetzTim Peters2003-01-081-68/+89
* A new implementation of astimezone() that does what we agreed on in allTim Peters2003-01-041-16/+33
* The tzinfo methods utcoffset() and dst() must return a timedelta objectTim Peters2003-01-021-32/+40
* astimezone() internals: if utcoffset() returns a duration, complain ifTim Peters2003-01-021-0/+17
* A quicker astimezone() implementation, rehabilitating an earlierTim Peters2003-01-011-0/+25
* The failure of the last-second addition to the timezone coversion test isTim Peters2003-01-011-4/+12
* A new, and much hairier, implementation of astimezone(), building onTim Peters2002-12-311-86/+86
* A step on the way to making tzinfo classes writable by mortals: get ridTim Peters2002-12-301-17/+38
* Added tests that conversion to our own timezone is always an identity,Tim Peters2002-12-301-0/+13
* Beefed up the timezone conversion test by adding a phony UTC zone that'sTim Peters2002-12-301-67/+81
* A start at non-trivial (== DST-aware) tests of timezone conversion.Tim Peters2002-12-291-0/+152
* Make comparison and subtraction of aware objects ignore tzinfo if theTim Peters2002-12-271-8/+86