summaryrefslogtreecommitdiffstats
path: root/Modules/datetimemodule.c
Commit message (Expand)AuthorAgeFilesLines
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-26/+24
* Stop using METH_OLDARGS implicitlyNeal Norwitz2007-05-221-9/+9
* Complete revamp of PCBuild8 directory. Use subdirectories for each project u...Kristján Valur Jónsson2007-04-301-0/+2
* Patch #1646728: datetime.fromtimestamp fails with negativeGuido van Rossum2007-03-061-0/+6
* Bug #1653736: Complain about keyword arguments to time.isoformat.Martin v. Löwis2007-02-081-2/+2
* Bug #1556784: allow format strings longer than 127 characters inGeorg Brandl2006-09-301-2/+2
* Bug #1478429: make datetime.datetime.fromtimestamp accept every float,Georg Brandl2006-04-281-0/+7
* C++ compiler cleanup: "typename" is a C++ keywordSkip Montanaro2006-04-181-11/+11
* Coverity-found bug: datetime_strptime() failed to check for NULL return fromThomas Wouters2006-04-141-0/+4
* Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace()Neal Norwitz2006-03-201-4/+9
* 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
* Comparison for timedelta, time, date and datetime objects: __eq__ andTim Peters2003-02-071-38/+52
* Whitespace normalizationNeal Norwitz2003-02-041-1/+1
* New functions alloc_{time,datetime}. Got rid of all setstate-likeTim Peters2003-02-011-168/+123
* There's no good reason for datetime objects to expose __getstate__()Tim Peters2003-02-011-52/+4
* Removed all uses of the out-of-favor __safe_for_unpickling__ magicTim Peters2003-02-011-27/+0
* All over: changed comments to reflect pickling is straightforward now,Tim Peters2003-02-011-7/+5
* delta_setstate(): This waS no longer referenced, so nukeit.Tim Peters2003-02-011-38/+2
* The various datetime object __setstate__() methods are no longer publicTim Peters2003-01-311-116/+105
* Backward branches are disgusting, at least when a forward branchTim Peters2003-01-311-6/+6
* Change the approach to pickling to use __reduce__ everywhere. MostGuido van Rossum2003-01-301-242/+221
* date and datetime comparison: when we don't know how toTim Peters2003-01-241-1/+13
* Updated the astimezone() proof to recover from all the last week'sTim Peters2003-01-241-77/+94
* Fix typoNeal Norwitz2003-01-231-1/+1
* SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1).Tim Peters2003-01-231-12/+20
* Reimplemented datetime.now() to be useful.Tim Peters2003-01-231-7/+17