summaryrefslogtreecommitdiffstats
path: root/Modules/_datetimemodule.c
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15973: fixed 3.2 backport.Alexander Belopolsky2012-09-201-2/+4
|
* Issue #15973: Fixed segmentation fault on timezone comparison to other types.Alexander Belopolsky2012-09-201-3/+7
|
* merge 3.2Benjamin Peterson2012-02-211-0/+1
|
* Merge from 3.1: Issue #13703: add a way to randomize the hash values of ↵Georg Brandl2012-02-201-1/+3
| | | | | | | | | basic types (str, bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
* Issue #11576: Fixed timedelta subtraction glitch on big timedelta valuesAlexander Belopolsky2011-04-061-7/+8
|
* 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
| | | | NULL
* 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
| | | | | | exposed in Python.h. This function is similar to POSIX gettimeofday(struct timeval *tp), but available on platforms without gettimeofday().
* Issue #7989: Added pure python implementation of the datetime module.Alexander Belopolsky2010-07-231-0/+5488