summaryrefslogtreecommitdiffstats
path: root/Modules/_datetimemodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #20440: Cleaning up the code by using Py_SETREF.Serhiy Storchaka2016-01-051-18/+6
* Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-1/+1
* Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-10/+10
* Issue #25558: Use compile-time asserts.Serhiy Storchaka2015-11-071-3/+3
* Closes issue #23600: Wrong results from tzinfo.fromutc().Alexander Belopolsky2015-09-281-1/+1
|\
| * Closes issue #23600: Wrong results from tzinfo.fromutc().Alexander Belopolsky2015-09-281-1/+1
| |\
| | * Closes issue #23600: Wrong results from tzinfo.fromutc().Alexander Belopolsky2015-09-281-1/+1
| * | Merge 3.4 (datetime rounding)Victor Stinner2015-09-181-11/+63
| |\ \ | | |/
| | * Issue #23517: Fix rounding in fromtimestamp() and utcfromtimestamp() methodsVictor Stinner2015-09-181-8/+63
| * | Issue #25155: Add _PyTime_AsTimevalTime_t() functionVictor Stinner2015-09-181-4/+5
* | | Issue #25155: Add _PyTime_AsTimevalTime_t() functionVictor Stinner2015-09-181-4/+5
* | | Issue #23517: fromtimestamp() and utcfromtimestamp() methods ofVictor Stinner2015-09-081-1/+1
* | | Revert change 0eb8c182131e:Victor Stinner2015-09-081-1/+21
* | | Issue #22241: Fix a compiler waringVictor Stinner2015-09-071-1/+1
* | | Issue #15989: Fixed some scarcely probable integer overflows.Serhiy Storchaka2015-09-061-1/+1
* | | Closes Issue#22241: timezone.utc name is now plain 'UTC', not 'UTC-00:00'.Alexander Belopolsky2015-09-061-0/+5
* | | Issue #23517: fromtimestamp() and utcfromtimestamp() methods ofVictor Stinner2015-09-031-1/+1
* | | Issue #23517: datetime.timedelta constructor now rounds microseconds to nearestVictor Stinner2015-09-021-21/+1
* | | Backed out changeset b690bf218702Victor Stinner2015-09-021-1/+1
* | | Issue #23517: datetime.datetime.fromtimestamp() andVictor Stinner2015-09-011-1/+1
* | | Move assertion inside _PyTime_ObjectToTimeval()Victor Stinner2015-09-011-1/+0
|/ /
* | Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka2015-04-031-35/+3
* | Issue #22117: Fix rounding of fromtimestamp() methods of datetime.datetime andVictor Stinner2015-03-291-2/+3
* | Issue #22117: Use the _PyTime_t API in _datetime.datetime() constructorVictor Stinner2015-03-291-4/+14
* | Closes issue #22791: Improved datetime from timestamp methods documentation.Alexander Belopolsky2015-03-011-2/+1
* | mergeRaymond Hettinger2014-07-251-7/+7
|\ \ | |/
| * Issue #22044: Fixed premature DECREF in call_tzinfo_method.Raymond Hettinger2014-07-251-7/+7
* | remove the ability of datetime.time to be considered false (closes #13936)Benjamin Peterson2014-03-201-37/+1
|/
* Issue #20320: select.select() and select.kqueue.control() now round the timeoutVictor Stinner2014-02-161-2/+2
* Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-091-2/+4
* Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings2014-01-281-3/+3
* Issue #20390: Small fixes and improvements for Argument Clinic.Larry Hastings2014-01-261-1/+1
* Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings2014-01-241-7/+7
* Issue #19273: The marker comments Argument Clinic uses have been changedLarry Hastings2014-01-071-6/+6
* Silence more PyObject_INIT() unused value warnings.Christian Heimes2013-12-041-2/+2
* Issue #19674: inspect.signature() now produces a correct signatureLarry Hastings2013-11-231-4/+8
* Issue #19730: Argument Clinic now supports all the existing PyArgLarry Hastings2013-11-231-5/+5
* Argument Clinic: rename "self" to "module" for module-level functions.Larry Hastings2013-11-181-11/+12
* Issue #19437: Fix datetime_subtract(), handle new_delta() failureVictor Stinner2013-11-071-0/+3
* Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.Martin v. Löwis2013-11-071-14/+5
* Issue #16612: Add "Argument Clinic", a compile-time preprocessorLarry Hastings2013-10-191-17/+57
* _datetimemodule.c: fix the compilation warning "conversion from 'double' toVictor Stinner2013-08-271-1/+1
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-7/+7
|\
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-7/+7
* | Reuse us_per_second in delta_total_seconds.Alexander Belopolsky2013-08-041-9/+1
* | Fixes #8860: Round half-microseconds to even in the timedelta constructor.Alexander Belopolsky2013-08-041-18/+31
* | Fix NULL ptr dereferencing in local_timezone(). nameo can be NULLChristian Heimes2013-06-291-1/+1
* | Fix time.mktime() and datetime.datetime.timestamp() on AIXVictor Stinner2013-06-251-3/+10
* | Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant()Charles-Francois Natali2013-05-201-2/+2
|/
* Fix a few typos and a double semicolon. Patch by Eitan Adler.Ezio Melotti2013-01-271-1/+1