summaryrefslogtreecommitdiffstats
path: root/Modules/_datetimemodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #16096: Fix several occurrences of potential signed integer overflow. ...Mark Dickinson2012-10-061-4/+3
* Closes #15973: fix a segmentation fault when comparing timezone objects.Georg Brandl2012-09-221-0/+6
* Issue #9527: tm_gmtoff has 'correct' sign.Alexander Belopolsky2012-06-221-7/+3
* Fixed compiler warnings in datetime_astimezone()Alexander Belopolsky2012-06-221-4/+5
* Issue #9527: Fixes for platforms without tm_zoneAlexander Belopolsky2012-06-221-20/+22
* Issue #9527: datetime.astimezone() method will now supply a classAlexander Belopolsky2012-06-221-4/+82
* Issue #15006: Allow equality comparison between naive and aware timeAlexander Belopolsky2012-06-161-0/+16
* Issue #2736: Added datetime.timestamp() method.Alexander Belopolsky2012-06-081-0/+49
* Issue #14180: datetime.date.fromtimestamp(), datetime.datetime.fromtimestamp()Victor Stinner2012-03-131-36/+39
* Close #14180: Factorize code to convert a number of seconds to time_t, timeva...Victor Stinner2012-03-131-32/+13
* Remove an unnecessary extra copy of the bytes hash function.Gregory P. Smith2012-01-141-15/+1
* Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()Victor Stinner2011-11-211-2/+2
* Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-19/+19
* Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-2/+4
* Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-25/+52
* Implement PEP 393.Martin v. Löwis2011-09-281-6/+5
* Issue #1621: Fix undefined behaviour from signed overflow in datetime module ...Mark Dickinson2011-09-251-4/+4
* Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-111-38/+21
* Issue #11930: Remove year >= 1000 limitation from datetime.strftime.Alexander Belopolsky2011-05-021-25/+0
* Issue #11576: Fixed timedelta subtraction glitch on big timedelta valuesAlexander Belopolsky2011-04-061-7/+8
|\
| * Issue #11576: Fixed timedelta subtraction glitch on big timedelta valuesAlexander Belopolsky2011-04-061-7/+8
* | Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead ofVictor Stinner2011-03-211-6/+3
* | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-1/+1
|/
* Issue #1777412: extended year range of strftime down to 1000.Alexander Belopolsky2011-01-081-6/+6
* Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for ...Alexander Belopolsky2010-12-081-1/+2
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
* make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-7/+7
* Issue 9183: Intern UTC timezone.Alexander Belopolsky2010-10-141-14/+31
* Issue 9005: Removed dead code.Alexander Belopolsky2010-10-131-22/+6
* Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C APIAlexander Belopolsky2010-08-051-30/+3
* Issue #7989: Added pure python implementation of the datetime module.Alexander Belopolsky2010-07-231-0/+5488