summaryrefslogtreecommitdiff
path: root/Modules/datetimemodule.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039) (GH-...Serhiy Storchaka2018-11-201-46/+50
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-10/+10
* [2.7] bpo-31752: Fix possible crash in timedelta constructor called with cust...Serhiy Storchaka2017-10-231-2/+7
* consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563)Benjamin Peterson2017-09-131-6/+3
* Issue #22463: Backport compiler warning fixes and workaroundsMartin Panter2016-06-211-2/+2
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-261-1/+1
* Issue #11576: Fixed timedelta subtraction glitch on big timedelta valuesAlexander Belopolsky2011-04-051-7/+8
* Revert r81681 (issue 8810).Alexander Belopolsky2010-07-031-2/+1
* Issue8810: Clearing up docstring for tzinfo.utcoffset.Sean Reifscheider2010-06-041-1/+2
* Issue #7150: Raise OverflowError if the result of adding or subtractingAlexander Belopolsky2010-05-271-13/+16
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-3361/+3361
* Issue #8644: Improve accuracy of timedelta.total_seconds method.Mark Dickinson2010-05-091-3/+19
* Prevent a possible NULL de-reference and an unneeded variable assignment.Brett Cannon2010-05-041-2/+2
* Fix a gcc warning introduced by r79397.Victor Stinner2010-03-251-1/+1
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-251-5/+4
* #7413: Passing '\0' as the separator to datetime.datetime.isoformat()Amaury Forgeot d'Arc2009-12-291-9/+14
* Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method ...Antoine Pitrou2009-11-251-1/+12
* Merge in release25-maint r60793:Gregory P. Smith2008-06-111-0/+7
* More reverting of r63675 per the mailing list discussions. This restoresGregory P. Smith2008-06-101-2/+2
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-56/+56
* Fix issue 2782: be less strict about the format string type in strftime.Gregory P. Smith2008-06-021-21/+25
* Renamed PyString to PyBytesChristian Heimes2008-05-261-63/+63
* Use a buffer large enough to ensure we don't overrun, even if the valueNeal Norwitz2008-03-171-1/+1
* add %f format to datetime - issue 1158Skip Montanaro2008-03-151-24/+78
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+32
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-031-4/+4
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-22/+22
* 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