| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #11576: Fixed timedelta subtraction glitch on big timedelta values | Alexander Belopolsky | 2011-04-06 | 1 | -0/+7 |
|
|
* | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
|
|
* | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -3/+3 |
|
|
* | Issue #7150: Raise OverflowError if the result of adding or subtracting | Alexander Belopolsky | 2010-05-27 | 1 | -9/+10 |
|
|
* | Issue #7879: Skip negative timestamps test on any Windows platform | Alexander Belopolsky | 2010-05-26 | 1 | -7/+2 |
|
|
* | Issue #7879: Do not test negative timestamps on any Windows platform | Alexander Belopolsky | 2010-05-26 | 1 | -3/+3 |
|
|
* | Issue #8644: Improve accuracy of timedelta.total_seconds method. | Mark Dickinson | 2010-05-09 | 1 | -1/+8 |
|
|
* | use assert[Not]IsInstance where appropriate | Ezio Melotti | 2010-01-24 | 1 | -16/+15 |
|
|
* | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -5/+2 |
|
|
* | #7413: Passing '\0' as the separator to datetime.datetime.isoformat() | Amaury Forgeot d'Arc | 2009-12-29 | 1 | -0/+1 |
|
|
* | Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method ... | Antoine Pitrou | 2009-11-25 | 1 | -0/+7 |
|
|
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -179/+179 |
|
|
* | Fix recently introduced test cases. | Kristján Valur Jónsson | 2009-01-15 | 1 | -3/+12 |
|
|
* | Add tests for invalid format specifiers in strftime, and for handling of inva... | Kristján Valur Jónsson | 2009-01-12 | 1 | -0/+8 |
|
|
* | Typo fix | Andrew M. Kuchling | 2008-10-03 | 1 | -1/+1 |
|
|
* | Issue 2235: Py3k warnings are now emitted for classes that will no longer inh... | Nick Coghlan | 2008-08-11 | 1 | -0/+1 |
|
|
* | Fix issue 2782: be less strict about the format string type in strftime. | Gregory P. Smith | 2008-06-02 | 1 | -0/+4 |
|
|
* | add %f format to datetime - issue 1158 | Skip Montanaro | 2008-03-15 | 1 | -8/+9 |
|
|
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
|
|
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 1 | -0/+76 |
|
|
* | Fix silly typo in test name. | Guido van Rossum | 2007-08-24 | 1 | -1/+1 |
|
|
* | Remove functionality from test_datetime.test_main() that does reference count... | Collin Winter | 2007-04-25 | 1 | -20/+1 |
|
|
* | Standardize on test.test_support.run_unittest() (as opposed to a mix of run_u... | Collin Winter | 2007-04-25 | 1 | -26/+8 |
|
|
* | Windows doesn't support negative timestamps. Skip the tests involving them | Guido van Rossum | 2007-03-07 | 1 | -0/+7 |
|
|
* | Patch #1646728: datetime.fromtimestamp fails with negative | Guido van Rossum | 2007-03-06 | 1 | -0/+9 |
|
|
* | Bug #1653736: Complain about keyword arguments to time.isoformat. | Martin v. Löwis | 2007-02-08 | 1 | -0/+5 |
|
|
* | Bug #1556784: allow format strings longer than 127 characters in | Georg Brandl | 2006-09-30 | 1 | -0/+1 |
|
|
* | Bug #1478429: make datetime.datetime.fromtimestamp accept every float, | Georg Brandl | 2006-04-28 | 1 | -0/+6 |
|
|
* | Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace() | Neal Norwitz | 2006-03-20 | 1 | -0/+11 |
|
|
* | similar to SF bug 847019: a quick check in the time() constructor, which | Armin Rigo | 2005-11-07 | 1 | -0/+7 |
|
|
* | Use descriptors. | Guido van Rossum | 2005-01-16 | 1 | -1/+1 |
|
|
* | Add strptime() constructor to datetime class. Thanks to Josh Spoerri for | Skip Montanaro | 2005-01-13 | 1 | -0/+9 |
|
|
* | SF bug #1028306: date-datetime comparison | Tim Peters | 2004-09-16 | 1 | -0/+43 |
|
|
* | Bug 975996: Add _PyTime_DoubleToTimet to C API | Tim Peters | 2004-06-20 | 1 | -0/+27 |
|
|
* | SF 952807: Unpickling pickled instances of subclasses of datetime.date, | Tim Peters | 2004-06-07 | 1 | -0/+34 |
|
|
* | SF bug 847019 datetime.datetime initialization needs more strict checking | Tim Peters | 2004-03-21 | 1 | -0/+20 |
|
|
* | SF bug #761337: datetime.strftime fails on trivial format string | Raymond Hettinger | 2003-06-27 | 1 | -0/+1 |
|
|
* | datetime.timedelta is now subclassable in Python. The new test shows | Tim Peters | 2003-05-17 | 1 | -0/+31 |
|
|
* | datetime.datetime and datetime.time can now be subclassed in Python. Brr. | Tim Peters | 2003-05-17 | 1 | -31/+131 |
|
|
* | test_subclass_date(): Beefed this up, to check that new instance | Tim Peters | 2003-05-17 | 1 | -2/+28 |
|
|
* | The date class is now properly subclassable. (SF bug #720908) | Guido van Rossum | 2003-04-14 | 1 | -0/+6 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-02-19 | 1 | -11/+11 |
|
|
* | The Python implementation of datetime was changed in ways that no longer | Tim Peters | 2003-02-08 | 1 | -31/+10 |
|
|
* | Comparison for timedelta, time, date and datetime objects: __eq__ and | Tim Peters | 2003-02-07 | 1 | -18/+68 |
|
|
* | Merge the test part of the below checkin to the sandbox and Zope3, so | Guido van Rossum | 2003-02-07 | 1 | -0/+8 |
|
|
* | SF bug 680864: test_datetime fails for non-unix epoch | Tim Peters | 2003-02-06 | 1 | -12/+11 |
|
|
* | Build pickler_choices list in a lazier way. | Tim Peters | 2003-02-05 | 1 | -16/+5 |
|
|
* | cPickle now implements enough of protocol 2 to enable all | Guido van Rossum | 2003-02-03 | 1 | -3/+3 |
|
|
* | There's no good reason for datetime objects to expose __getstate__() | Tim Peters | 2003-02-01 | 1 | -12/+0 |
|
|
* | Changed the tests to stop using __setstate__(). __setstate__() no | Tim Peters | 2003-01-31 | 1 | -65/+31 |
|
|