summaryrefslogtreecommitdiff
path: root/Modules/_datetimemodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #29140: Fix hash(datetime.time)Victor Stinner2017-01-031-5/+5
* Issue #28752: Restored the __reduce__() methods of datetime objects.Serhiy Storchaka2016-11-221-8/+26
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-2/+2
* Issue #28148: Stop using localtime() and gmtime() in the time module.Alexander Belopolsky2016-09-281-51/+16
* stop using Py_LL and Py_ULLBenjamin Peterson2016-09-181-1/+1
* #28067: Fixed another typo.Alexander Belopolsky2016-09-101-1/+1
* #28067: Fixed a typo.Alexander Belopolsky2016-09-101-1/+1
* Closes #28067: Do not call localtime (gmtime) in datetime module.Alexander Belopolsky2016-09-101-42/+60
* fix dummy macroBenjamin Peterson2016-09-091-1/+2
* replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-12/+12
* Avoid inefficient way to call functions without argumentVictor Stinner2016-09-051-4/+4
* Issue #27809: tzinfo_reduce() uses fast callVictor Stinner2016-08-231-14/+10
* Closes #27710: Disallow fold not in [0, 1] in time and datetime constructors.Alexander Belopolsky2016-08-081-5/+23
* Closes #27661: Added tzinfo keyword argument to datetime.combine.Alexander Belopolsky2016-08-021-16/+20
* Issue 24773: Added a time_t overflow check.Alexander Belopolsky2016-07-251-1/+8
* Closes issue #24773: Implement PEP 495 (Local Time Disambiguation).Alexander Belopolsky2016-07-221-149/+526
* Issue #27171: Merge typo fixes from 3.5Martin Panter2016-06-021-124/+131
|\
| * Issue #27076: Merge spelling from 3.5Martin Panter2016-05-261-1/+1
| |\
| * \ Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-3/+3
| |\ \
| * \ \ Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-124/+131
| |\ \ \ | | |/ / | |/| |
| | * | mergeAlexander Belopolsky2016-03-251-1/+6
| | |\ \ | | |/ / | |/| |
| | * | Closes #19475: Added timespec to the datetime.isoformat() method.Alexander Belopolsky2016-03-061-28/+95
| | * | 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-271-64/+16
| | |\ \
| | | * | Issue #25155: Add _PyTime_AsTimevalTime_t() functionVictor Stinner2015-09-181-4/+5
| | | * | Issue #23517: fromtimestamp() and utcfromtimestamp() methods ofVictor Stinner2015-09-091-1/+1
| | | * | Revert change 0eb8c182131e:Victor Stinner2015-09-081-1/+21
| | | * | Issue #22241: Fix a compiler waringVictor Stinner2015-09-081-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-021-1/+1
| | | * | Move assertion inside _PyTime_ObjectToTimeval()Victor Stinner2015-09-021-1/+0
* | | | | Issue #27171: Fix typos in documentation, comments, and test function namesMartin Panter2016-06-021-2/+2
| |_|_|/ |/| | |
* | | | Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-1/+1
|/ / /
* | | Issue#26616:Fixed a bug in datetime.astimezone() method.Alexander Belopolsky2016-03-251-1/+6
|/ /
* | Closes issue #23600: Wrong results from tzinfo.fromutc().Alexander Belopolsky2015-09-271-79/+19
|\ \
| * \ Merge 3.4 (datetime rounding)Victor Stinner2015-09-181-11/+63
| |\ \
| * | | Issue #25155: Add _PyTime_AsTimevalTime_t() functionVictor Stinner2015-09-181-4/+5
| | |/ | |/|
| * | 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-301-2/+3
| * | Issue #22117: Use the _PyTime_t API in _datetime.datetime() constructorVictor Stinner2015-03-301-4/+14
| * | Closes issue #22791: Improved datetime from timestamp methods documentation.Alexander Belopolsky2015-03-011-2/+1
| * | mergeRaymond Hettinger2014-07-251-7/+7
| |\ \
| * | | remove the ability of datetime.time to be considered false (closes #13936)Benjamin Peterson2014-03-201-37/+1