summaryrefslogtreecommitdiff
path: root/Python/pytime.c
Commit message (Expand)AuthorAgeFilesLines
* Fix miscellaneous typos (#4275)luzpaz2017-11-051-1/+1
* bpo-31784: Implement PEP 564: add time.time_ns() (#3989)Victor Stinner2017-11-021-19/+86
* bpo-31786: Make functions in the select module blocking when timeout is a sma...Pablo Galindo2017-10-171-2/+15
* bpo-31773: _PyTime_GetPerfCounter() uses _PyTime_t (GH-3983)Victor Stinner2017-10-161-36/+122
* bpo-31773: time.perf_counter() uses again double (GH-3964)Victor Stinner2017-10-121-15/+21
* Cleanup pytime.c (#3955)Victor Stinner2017-10-111-54/+76
* bpo-31415: Add _PyTime_GetPerfCounter() and use it for -X importtime (#3936)Victor Stinner2017-10-101-10/+71
* bpo-31338 (#3374)Barry Warsaw2017-09-141-9/+3
* bpo-26669: Fix nan arg value error in pytime.c (#3085)Han Lee2017-09-081-0/+14
* bpo-31373: fix undefined floating-point demotions (#3396)Benjamin Peterson2017-09-071-16/+16
* Revert "pytime: include winsock2, so we can have a complete timeval type (#33...Antoine Pitrou2017-09-061-1/+0
* pytime: include winsock2, so we can have a complete timeval type (#3377)Benjamin Peterson2017-09-051-0/+1
* bpo-30183: Fixes HP-UX cc compilation error in pytime.c (#1351)haney2017-06-211-0/+20
* Issue #28148: Stop using localtime() and gmtime() in the time module.Alexander Belopolsky2016-09-281-0/+52
* replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-9/+9
* require a long long data type (closes #27961)Benjamin Peterson2016-09-051-14/+2
* Merge 3.5 (pytime)Victor Stinner2015-11-101-3/+3
|\
| * pytime.c: rename pygettimeofday_new() to pygettimeofday()Victor Stinner2015-11-101-3/+3
| * Issue #25155: Fix _PyTime_Divide() roundingVictor Stinner2015-09-181-3/+8
| * Issue #25155: Add _PyTime_AsTimevalTime_t() functionVictor Stinner2015-09-181-38/+61
* | Issue #25558: Use compile-time asserts.Serhiy Storchaka2015-11-071-13/+12
* | Fix _PyTime_AsTimevalStruct_impl() on OpenBSDVictor Stinner2015-10-011-2/+3
* | Backout change 28d3bcb1bad6: "Try to fix _PyTime_AsTimevalStruct_impl() onVictor Stinner2015-09-301-3/+2
* | Try to fix _PyTime_AsTimevalStruct_impl() on OpenBSDVictor Stinner2015-09-291-2/+3
* | Issue #25155: Add _PyTime_AsTimevalTime_t() functionVictor Stinner2015-09-181-19/+60
* | pytime: oops, fix typos on WindowsVictor Stinner2015-09-101-2/+2
* | pytime: add _PyTime_check_mul_overflow() macro to avoid undefined behaviourVictor Stinner2015-09-101-11/+24
* | New try to fix test_time.test_AsSecondsDouble() on x86 buildbots.Victor Stinner2015-09-101-2/+7
* | Try to fix test_time.test_AsSecondsDouble() on "x86 Gentoo Non-Debug with X 3...Victor Stinner2015-09-101-3/+8
* | Fix test_time on WindowsVictor Stinner2015-09-101-20/+8
* | test_time: rewrite PyTime API rounding testsVictor Stinner2015-09-091-6/+10
* | pytime: add _PyTime_Round() helper to factorize codeVictor Stinner2015-09-091-25/+20
* | Make _PyTime_RoundHalfEven() private againVictor Stinner2015-09-091-1/+3
* | Issue #23517: fromtimestamp() and utcfromtimestamp() methods ofVictor Stinner2015-09-091-42/+29
* | Issue #23517: Fix implementation of the ROUND_HALF_UP rounding mode inVictor Stinner2015-09-041-4/+4
* | Don't abuse volatile keyword in pytime.cVictor Stinner2015-09-031-2/+4
* | Enhance _PyTime_AsTimespec()Victor Stinner2015-09-031-3/+3
* | Merge 3.5 (monotonic)Victor Stinner2015-09-031-13/+3
|\ \ | |/
| * oops, rename pymonotonic_new() to pymonotonic()Victor Stinner2015-09-031-3/+3
| * Issue #24707: Remove assertion in monotonic clockVictor Stinner2015-09-031-10/+0
* | Issue #23517: datetime.timedelta constructor now rounds microseconds to nearestVictor Stinner2015-09-021-2/+1
* | Issue #23517: Try to fix test_time on "x86 Ubuntu Shared 3.x" buildbotVictor Stinner2015-09-021-7/+10
* | Issue #23517: Fix _PyTime_ObjectToDenominator()Victor Stinner2015-09-021-18/+17
* | Issue #23517: Add "half up" rounding mode to the _PyTime APIVictor Stinner2015-09-021-10/+54
* | Move assertion inside _PyTime_ObjectToTimeval()Victor Stinner2015-09-021-6/+14
* | Refactor pytime.cVictor Stinner2015-09-021-48/+65
|/
* Issue #22117: Add a new _PyTime_FromSeconds() functionVictor Stinner2015-04-031-0/+17
* Issue #22117, issue #23485: Fix _PyTime_AsMilliseconds() andVictor Stinner2015-04-011-13/+13
* Issue #23485: Add _PyTime_FromMillisecondsObject() functionVictor Stinner2015-03-301-5/+18
* Issue #22117: Try to fix rounding in conversion from Python double to _PyTime_tVictor Stinner2015-03-301-1/+2