summaryrefslogtreecommitdiffstats
path: root/Modules/datetimemodule.c
Commit message (Expand)AuthorAgeFilesLines
* Revert r56044 (which changed the %c format specifier to accept aWalter Dörwald2007-07-011-1/+1
* Change %c format specifier for PyArg_ParseTuple() so that it acceptsWalter Dörwald2007-06-201-1/+1
* Change timedelta.__str__() to return a unicode object.Walter Dörwald2007-05-311-36/+19
* Change isoformat() methods to return unicode strings.Walter Dörwald2007-05-311-48/+32
* Change format_ctime() to return unicode (i.e.Walter Dörwald2007-05-311-6/+4
* Refactor to avoid ultra-deeply-nested code.Guido van Rossum2007-05-231-36/+53
* Fix datetime and its test.Guido van Rossum2007-05-231-8/+21
* Simplify append_keyword_tzinfo() by usingWalter Dörwald2007-05-231-10/+2
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-9/+9
* Remove unused variables.Walter Dörwald2007-05-201-1/+0
* Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald2007-05-191-30/+20
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-13/+13
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-141-0/+2
* Fix some miscellaneous places that incorrectly insisted on str8.Guido van Rossum2007-05-101-9/+13
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-0/+6
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-2/+2
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-5/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-2/+2
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-6/+6
* Fix the datetime comparison conundrum.Guido van Rossum2006-08-241-86/+47
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-10/+5
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-0/+7
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-15/+24
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-5/+0
* Finish getting rid of statichere/staticforwardNeal Norwitz2006-03-221-3/+3
* More unconsting.Martin v. Löwis2006-02-271-11/+11
* Remove two instances of trailing commas. Resolves patch #1209781.Georg Brandl2006-02-191-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-2/+2
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-16/+16
* similar to SF bug 847019: a quick check in the time() constructor, whichArmin Rigo2005-11-071-1/+2
* Add strptime() constructor to datetime class. Thanks to Josh Spoerri forSkip Montanaro2005-01-131-0/+45
* Bug #1087216: datetime module documentation missing critical detailRaymond Hettinger2004-12-191-3/+9
* SF bug #1028306: date-datetime comparisonTim Peters2004-09-161-1/+11
* SF patch 876130: add C API to datetime module, from Anthony Tuininga.Tim Peters2004-06-201-0/+30
* Bug 975996: Add _PyTime_DoubleToTimet to C APITim Peters2004-06-201-5/+15
* SF 952807: Unpickling pickled instances of subclasses of datetime.date,Tim Peters2004-06-071-6/+3
* SF bug 847019 datetime.datetime initialization needs more strict checkingTim Peters2004-03-211-2/+10
* Have strftime() check its time tuple argument to make sure the tuple's valuesBrett Cannon2004-03-021-2/+2
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-2/+2
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-4/+4
* SF bug #761337: datetime.strftime fails on trivial format stringRaymond Hettinger2003-06-271-1/+1
* Added more words about the abuse of the tp_alloc nitems argumentTim Peters2003-05-181-1/+12
* datetime.timedelta is now subclassable in Python. The new test showsTim Peters2003-05-171-165/+170
* datetime.datetime and datetime.time can now be subclassed in Python. Brr.Tim Peters2003-05-171-30/+46
* Turns out there wasn't a need to define tp_free for any of the types here.Tim Peters2003-05-161-4/+4
* Stopped using the old macro form of _PyObject_Del.Tim Peters2003-05-161-4/+4
* SF patch 731504: Typo in datetimemodule.c comment.Tim Peters2003-05-021-1/+1
* The date class is now properly subclassable. (SF bug #720908)Guido van Rossum2003-04-141-5/+8
* timedelta comparison and datetime addition: as the Python implementationTim Peters2003-02-081-4/+4