summaryrefslogtreecommitdiffstats
path: root/Modules/datetimemodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #5288: Eliminated round-trips between timdelta and int offsetsAlexander Belopolsky2010-07-071-475/+398
* Issue #9000: datetime.timezone objects now have eval-friendly repr.Alexander Belopolsky2010-07-061-2/+22
* Issue #9152: Removed dead code in datetime moduleAlexander Belopolsky2010-07-041-5/+0
* Merged revisions 82466 via svnmerge fromAlexander Belopolsky2010-07-031-2/+1
* Added missing white spaceAlexander Belopolsky2010-06-281-1/+1
* Merged revisions 80605-80609,80642-80646,80651-80652,80674,80684-80686,80748,...Benjamin Peterson2010-06-271-1/+2
* Issue #9051: Instances of timezone class can now be pickled.Alexander Belopolsky2010-06-231-0/+11
* Issue #9005: Prevent utctimetuple() from producing year 0 or year 10,000.Alexander Belopolsky2010-06-211-9/+3
* Issue #6641: Original commit for this issue, r82053, introduced aAlexander Belopolsky2010-06-181-2/+2
* Issue #6641: The datetime.strptime method now supports the %z directive.Alexander Belopolsky2010-06-171-66/+7
* Issue 5094: minor documentation fixesAlexander Belopolsky2010-06-151-3/+3
* Issue #5094: The ``datetime`` module now has a simple concrete classAlexander Belopolsky2010-06-141-1/+284
* Fix naming inconsistency.Mark Dickinson2010-06-071-1/+1
* Issue8810: Clearing up docstring for tzinfo.utcoffset.Sean Reifscheider2010-06-041-2/+2
* Issue #1289118: datetime.timedelta objects can now be multiplied by floatAlexander Belopolsky2010-05-311-1/+112
* Merged revisions 81566 via svnmerge fromAlexander Belopolsky2010-05-271-13/+16
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-3439/+3439
* Issue #8644: Improve accuracy of timedelta.total_seconds, by doing intermediateMark Dickinson2010-05-081-3/+19
* Rework delta_divmod to avoid use of PyTuple_SetItem.Mark Dickinson2010-04-201-5/+8
* Fix memory leak.Mark Dickinson2010-04-201-3/+2
* Issue #2706: Add support for dividing a timedelta by another timedelta.Mark Dickinson2010-04-201-3/+147
* Merged revisions 79307,79408,79430,79533,79542,79579-79580,79585-79587,79607-...Benjamin Peterson2010-04-111-4/+4
* Merged revisions 76529 via svnmerge fromAntoine Pitrou2009-11-251-1/+12
* add a replacement API for PyCObject, PyCapsule #5630Benjamin Peterson2009-05-051-5/+4
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-6/+6
* Issue #4910, patch 3/3: rename nb_long to nb_reservedMark Dickinson2009-01-171-1/+1
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-2/+2
* Merged revisions 64114 via svnmerge fromAmaury Forgeot d'Arc2008-06-181-0/+7
* Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethodsBenjamin Peterson2008-06-111-3/+0
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-24/+37
* Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,...Georg Brandl2008-06-101-11/+12
* Renamed PyString to PyBytesChristian Heimes2008-05-261-29/+29
* Issue #1950: Fixed misusage of PyUnicode_AsString().Alexandre Vassalotti2008-05-031-2/+1
* Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,...Christian Heimes2008-03-181-1/+1
* Fix datetime_strptime following svnmerge from trunk; it wasMark Dickinson2008-03-161-1/+1
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-21/+80
* Fixes for shared 2.6 code that implements PEP 3101, advanced stringEric Smith2008-02-171-16/+1
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-4/+4
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-23/+23
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-041-3/+6
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-26/+26
* Use PyString instead of PyBytes in wrap_strftime().Walter Dörwald2007-11-221-10/+10
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-18/+18
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-2/+2
* Change a variable to Py_ssize_t to silence a compiler warning (and because itBrett Cannon2007-11-061-1/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-13/+7
* Remove more cruft leftover from nb_coerce. Rename nb_coerce toNeil Schemenauer2007-09-211-1/+1
* Added __format__ method to datetime.datetime, datetime.date, and datetime.time.Eric Smith2007-09-111-0/+36
* Remove checking redundantly for checks of PyInt and PyLong.Neal Norwitz2007-08-311-5/+5
* Use the correct type for variables corresponding to 'u' formats.Guido van Rossum2007-08-291-1/+1