| Commit message (Expand) | Author | Age | Files | Lines |
* | #7413: Passing '\0' as the separator to datetime.datetime.isoformat() | Amaury Forgeot d'Arc | 2009-12-29 | 1 | -9/+14 |
* | Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method ... | Antoine Pitrou | 2009-11-25 | 1 | -1/+12 |
* | Merge in release25-maint r60793: | Gregory P. Smith | 2008-06-11 | 1 | -0/+7 |
* | More reverting of r63675 per the mailing list discussions. This restores | Gregory P. Smith | 2008-06-10 | 1 | -2/+2 |
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -56/+56 |
* | Fix issue 2782: be less strict about the format string type in strftime. | Gregory P. Smith | 2008-06-02 | 1 | -21/+25 |
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -63/+63 |
* | Use a buffer large enough to ensure we don't overrun, even if the value | Neal Norwitz | 2008-03-17 | 1 | -1/+1 |
* | add %f format to datetime - issue 1158 | Skip Montanaro | 2008-03-15 | 1 | -24/+78 |
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 1 | -0/+32 |
* | Modified PyImport_Import and PyImport_ImportModule to always use absolute imp... | Christian Heimes | 2008-01-03 | 1 | -4/+4 |
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -22/+22 |
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -26/+24 |
* | Stop using METH_OLDARGS implicitly | Neal Norwitz | 2007-05-22 | 1 | -9/+9 |
* | Complete revamp of PCBuild8 directory. Use subdirectories for each project u... | Kristján Valur Jónsson | 2007-04-30 | 1 | -0/+2 |
* | Patch #1646728: datetime.fromtimestamp fails with negative | Guido van Rossum | 2007-03-06 | 1 | -0/+6 |
* | Bug #1653736: Complain about keyword arguments to time.isoformat. | Martin v. Löwis | 2007-02-08 | 1 | -2/+2 |
* | Bug #1556784: allow format strings longer than 127 characters in | Georg Brandl | 2006-09-30 | 1 | -2/+2 |
* | Bug #1478429: make datetime.datetime.fromtimestamp accept every float, | Georg Brandl | 2006-04-28 | 1 | -0/+7 |
* | C++ compiler cleanup: "typename" is a C++ keyword | Skip Montanaro | 2006-04-18 | 1 | -11/+11 |
* | Coverity-found bug: datetime_strptime() failed to check for NULL return from | Thomas Wouters | 2006-04-14 | 1 | -0/+4 |
* | Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace() | Neal Norwitz | 2006-03-20 | 1 | -4/+9 |
* | More unconsting. | Martin v. Löwis | 2006-02-27 | 1 | -11/+11 |
* | Remove two instances of trailing commas. Resolves patch #1209781. | Georg Brandl | 2006-02-19 | 1 | -1/+1 |
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -2/+2 |
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -16/+16 |
* | similar to SF bug 847019: a quick check in the time() constructor, which | Armin Rigo | 2005-11-07 | 1 | -1/+2 |
* | Add strptime() constructor to datetime class. Thanks to Josh Spoerri for | Skip Montanaro | 2005-01-13 | 1 | -0/+45 |
* | Bug #1087216: datetime module documentation missing critical detail | Raymond Hettinger | 2004-12-19 | 1 | -3/+9 |
* | SF bug #1028306: date-datetime comparison | Tim Peters | 2004-09-16 | 1 | -1/+11 |
* | SF patch 876130: add C API to datetime module, from Anthony Tuininga. | Tim Peters | 2004-06-20 | 1 | -0/+30 |
* | Bug 975996: Add _PyTime_DoubleToTimet to C API | Tim Peters | 2004-06-20 | 1 | -5/+15 |
* | SF 952807: Unpickling pickled instances of subclasses of datetime.date, | Tim Peters | 2004-06-07 | 1 | -6/+3 |
* | SF bug 847019 datetime.datetime initialization needs more strict checking | Tim Peters | 2004-03-21 | 1 | -2/+10 |
* | Have strftime() check its time tuple argument to make sure the tuple's values | Brett Cannon | 2004-03-02 | 1 | -2/+2 |
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -2/+2 |
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -4/+4 |
* | SF bug #761337: datetime.strftime fails on trivial format string | Raymond Hettinger | 2003-06-27 | 1 | -1/+1 |
* | Added more words about the abuse of the tp_alloc nitems argument | Tim Peters | 2003-05-18 | 1 | -1/+12 |
* | datetime.timedelta is now subclassable in Python. The new test shows | Tim Peters | 2003-05-17 | 1 | -165/+170 |
* | datetime.datetime and datetime.time can now be subclassed in Python. Brr. | Tim Peters | 2003-05-17 | 1 | -30/+46 |
* | Turns out there wasn't a need to define tp_free for any of the types here. | Tim Peters | 2003-05-16 | 1 | -4/+4 |
* | Stopped using the old macro form of _PyObject_Del. | Tim Peters | 2003-05-16 | 1 | -4/+4 |
* | SF patch 731504: Typo in datetimemodule.c comment. | Tim Peters | 2003-05-02 | 1 | -1/+1 |
* | The date class is now properly subclassable. (SF bug #720908) | Guido van Rossum | 2003-04-14 | 1 | -5/+8 |
* | timedelta comparison and datetime addition: as the Python implementation | Tim Peters | 2003-02-08 | 1 | -4/+4 |
* | Comparison for timedelta, time, date and datetime objects: __eq__ and | Tim Peters | 2003-02-07 | 1 | -38/+52 |
* | Whitespace normalization | Neal Norwitz | 2003-02-04 | 1 | -1/+1 |
* | New functions alloc_{time,datetime}. Got rid of all setstate-like | Tim Peters | 2003-02-01 | 1 | -168/+123 |