aboutsummaryrefslogtreecommitdiff
path: root/Python/pytime.c
AgeCommit message (Expand)Author
2021-10-11bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820)Victor Stinner
2021-10-01bpo-41710: Add private _PyDeadline_Get() function (GH-28674)Victor Stinner
2021-09-30bpo-41710: Fix building pytime.c on Windows (GH-28644)Victor Stinner
2021-09-30bpo-41710: Add pytime_add() and pytime_mul() (GH-28642)Victor Stinner
2021-09-30bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629)Victor Stinner
2021-09-25bpo-41299: QueryPerformanceFrequency() cannot fail (GH-28552)Victor Stinner
2021-09-22bpo-21302: time.sleep() uses waitable timer on Windows (GH-28483)Victor Stinner
2021-09-15bpo-21302: Add _PyTime_AsNanoseconds() (GH-28350)Victor Stinner
2020-11-16bpo-37205: time.time() cannot fail with fatal error (GH-23314)Victor Stinner
2020-11-16bpo-37205: time.perf_counter() and time.monotonic() are system-wide (GH-23284)Victor Stinner
2020-11-08bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)Ronald Oussoren
2020-05-18bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20...Minmin Gong
2020-03-09bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release ...Serhiy Storchaka
2020-02-07bpo-39502: Fix 64-bit Python PyTime_localtime() on AIX (GH-18285)Michael Felt
2019-09-10bpo-38068: Clean up gettimeofday configure logic. (GH-15775)Benjamin Peterson
2019-04-09bpo-34373: Fix time.mktime() on AIX (GH-12726)Victor Stinner
2018-12-28bpo-34373: fix test_mktime and test_pthread_getcpuclickid tests on AIX (GH-8726)Michael Felt
2017-11-05Fix miscellaneous typos (#4275)luzpaz
2017-11-02bpo-31784: Implement PEP 564: add time.time_ns() (#3989)Victor Stinner
2017-10-17bpo-31786: Make functions in the select module blocking when timeout is a sma...Pablo Galindo
2017-10-16bpo-31773: _PyTime_GetPerfCounter() uses _PyTime_t (GH-3983)Victor Stinner
2017-10-12bpo-31773: time.perf_counter() uses again double (GH-3964)Victor Stinner
2017-10-11Cleanup pytime.c (#3955)Victor Stinner
2017-10-10bpo-31415: Add _PyTime_GetPerfCounter() and use it for -X importtime (#3936)Victor Stinner
2017-09-14bpo-31338 (#3374)Barry Warsaw
2017-09-08bpo-26669: Fix nan arg value error in pytime.c (#3085)Han Lee
2017-09-07bpo-31373: fix undefined floating-point demotions (#3396)Benjamin Peterson
2017-09-06Revert "pytime: include winsock2, so we can have a complete timeval type (#33...Antoine Pitrou
2017-09-05pytime: include winsock2, so we can have a complete timeval type (#3377)Benjamin Peterson
2017-06-21bpo-30183: Fixes HP-UX cc compilation error in pytime.c (#1351)haney
2016-09-28Issue #28148: Stop using localtime() and gmtime() in the time module.Alexander Belopolsky
2016-09-06replace PY_LONG_LONG with long longBenjamin Peterson
2016-09-05require a long long data type (closes #27961)Benjamin Peterson
2015-11-10Merge 3.5 (pytime)Victor Stinner
2015-11-10pytime.c: rename pygettimeofday_new() to pygettimeofday()Victor Stinner
2015-11-07Issue #25558: Use compile-time asserts.Serhiy Storchaka
2015-10-01Fix _PyTime_AsTimevalStruct_impl() on OpenBSDVictor Stinner
2015-09-30Backout change 28d3bcb1bad6: "Try to fix _PyTime_AsTimevalStruct_impl() onVictor Stinner
2015-09-29Try to fix _PyTime_AsTimevalStruct_impl() on OpenBSDVictor Stinner
2015-09-18Issue #25155: Fix _PyTime_Divide() roundingVictor Stinner
2015-09-18Issue #25155: Add _PyTime_AsTimevalTime_t() functionVictor Stinner
2015-09-18Issue #25155: Add _PyTime_AsTimevalTime_t() functionVictor Stinner
2015-09-10pytime: oops, fix typos on WindowsVictor Stinner
2015-09-10pytime: add _PyTime_check_mul_overflow() macro to avoid undefined behaviourVictor Stinner
2015-09-10New try to fix test_time.test_AsSecondsDouble() on x86 buildbots.Victor Stinner
2015-09-10Try to fix test_time.test_AsSecondsDouble() on "x86 Gentoo Non-Debug with X 3...Victor Stinner
2015-09-10Fix test_time on WindowsVictor Stinner
2015-09-09test_time: rewrite PyTime API rounding testsVictor Stinner
2015-09-09pytime: add _PyTime_Round() helper to factorize codeVictor Stinner
2015-09-09Make _PyTime_RoundHalfEven() private againVictor Stinner