| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-111513: Improve datetime.fromtimestamp's error message (#124249) | AN Long | 2024-09-20 | 1 | -0/+4 |
|
|
* | gh-119613: Use C99+ functions instead of Py_IS_NAN/INFINITY/FINITE (#119619) | Sergey B Kirpichev | 2024-05-29 | 1 | -3/+3 |
|
|
* | gh-110850: Remove _PyTime_TimeUnchecked() function (#118552) | Victor Stinner | 2024-05-05 | 1 | -41/+6 |
|
|
* | gh-110850: Add PyTime_TimeRaw() function (#118394) | Victor Stinner | 2024-05-01 | 1 | -24/+69 |
|
|
* | gh-63207: Use GetSystemTimePreciseAsFileTime() in time.time() (#116822) | Victor Stinner | 2024-03-18 | 1 | -16/+22 |
|
|
* | gh-88494: Use QueryPerformanceCounter() for time.monotonic() (#116781) | Victor Stinner | 2024-03-14 | 1 | -138/+73 |
|
|
* | gh-110850: Fix _PyTime_FromSecondsDouble() API (#116606) | Victor Stinner | 2024-03-11 | 1 | -7/+4 |
|
|
* | gh-110850: Cleanup PyTime API: PyTime_t are nanoseconds (#115753) | Victor Stinner | 2024-02-21 | 1 | -55/+22 |
|
|
* | gh-110850: Rename internal PyTime C API functions (#115734) | Victor Stinner | 2024-02-20 | 1 | -11/+9 |
|
|
* | gh-110850: Replace _PyTime_t with PyTime_t (#115719) | Victor Stinner | 2024-02-20 | 1 | -152/+152 |
|
|
* | gh-110850: PyTime_Time() return 0 on success (GH-115713) | Victor Stinner | 2024-02-20 | 1 | -1/+1 |
|
|
* | gh-110850: Add PyTime_t C API (GH-115215) | Petr Viktorin | 2024-02-12 | 1 | -32/+70 |
|
|
* | gh-112567: Add _PyTimeFraction C API (#112568) | Victor Stinner | 2023-12-01 | 1 | -65/+85 |
|
|
* | gh-108277: Add os.timerfd_create() function (#108382) | Masaru Tsuchiyama | 2023-10-07 | 1 | -2/+12 |
|
|
* | gh-108765: Python.h no longer includes <sys/time.h> (#108775) | Victor Stinner | 2023-09-02 | 1 | -0/+5 |
|
|
* | gh-106316: Remove pytime.h header file (#106317) | Victor Stinner | 2023-07-01 | 1 | -0/+1 |
|
|
* | fix typos (#106247) | Inada Naoki | 2023-06-30 | 1 | -1/+1 |
|
|
* | gh-97786: Fix compiler warnings in pytime.c (#101826) | Mark Dickinson | 2023-02-20 | 1 | -6/+29 |
|
|
* | gh-74953: Add _PyTime_FromMicrosecondsClamp() function (#93942) | Victor Stinner | 2022-06-17 | 1 | -0/+8 |
|
|
* | gh-91731: Replace Py_BUILD_ASSERT() with static_assert() (#91730) | Victor Stinner | 2022-04-20 | 1 | -23/+40 |
|
|
* | bpo-46670: Test if a macro is defined, not its value (GH-31178) | Victor Stinner | 2022-02-07 | 1 | -1/+1 |
|
|
* | bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820) | Victor Stinner | 2021-10-11 | 1 | -2/+3 |
|
|
* | bpo-41710: Add private _PyDeadline_Get() function (GH-28674) | Victor Stinner | 2021-10-01 | 1 | -23/+62 |
|
|
* | bpo-41710: Fix building pytime.c on Windows (GH-28644) | Victor Stinner | 2021-09-30 | 1 | -5/+5 |
|
|
* | bpo-41710: Add pytime_add() and pytime_mul() (GH-28642) | Victor Stinner | 2021-09-30 | 1 | -99/+96 |
|
|
* | bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629) | Victor Stinner | 2021-09-30 | 1 | -76/+162 |
|
|
* | bpo-41299: QueryPerformanceFrequency() cannot fail (GH-28552) | Victor Stinner | 2021-09-24 | 1 | -21/+7 |
|
|
* | bpo-21302: time.sleep() uses waitable timer on Windows (GH-28483) | Victor Stinner | 2021-09-22 | 1 | -0/+11 |
|
|
* | bpo-21302: Add _PyTime_AsNanoseconds() (GH-28350) | Victor Stinner | 2021-09-15 | 1 | -123/+188 |
|
|
* | bpo-37205: time.time() cannot fail with fatal error (GH-23314) | Victor Stinner | 2020-11-16 | 1 | -106/+132 |
|
|
* | bpo-37205: time.perf_counter() and time.monotonic() are system-wide (GH-23284) | Victor Stinner | 2020-11-16 | 1 | -14/+2 |
|
|
* | bpo-41100: Support macOS 11 and Apple Silicon (GH-22855) | Ronald Oussoren | 2020-11-08 | 1 | -3/+28 |
|
|
* | bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20... | Minmin Gong | 2020-05-18 | 1 | -1/+1 |
|
|
* | bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release ... | Serhiy Storchaka | 2020-03-09 | 1 | -4/+4 |
|
|
* | bpo-39502: Fix 64-bit Python PyTime_localtime() on AIX (GH-18285) | Michael Felt | 2020-02-07 | 1 | -1/+1 |
|
|
* | bpo-38068: Clean up gettimeofday configure logic. (GH-15775) | Benjamin Peterson | 2019-09-10 | 1 | -4/+0 |
|
|
* | bpo-34373: Fix time.mktime() on AIX (GH-12726) | Victor Stinner | 2019-04-09 | 1 | -10/+7 |
|
|
* | bpo-34373: fix test_mktime and test_pthread_getcpuclickid tests on AIX (GH-8726) | Michael Felt | 2018-12-28 | 1 | -0/+14 |
|
|
* | Fix miscellaneous typos (#4275) | luzpaz | 2017-11-05 | 1 | -1/+1 |
|
|
* | bpo-31784: Implement PEP 564: add time.time_ns() (#3989) | Victor Stinner | 2017-11-02 | 1 | -19/+86 |
|
|
* | bpo-31786: Make functions in the select module blocking when timeout is a sma... | Pablo Galindo | 2017-10-17 | 1 | -2/+15 |
|
|
* | bpo-31773: _PyTime_GetPerfCounter() uses _PyTime_t (GH-3983) | Victor Stinner | 2017-10-16 | 1 | -36/+122 |
|
|
* | bpo-31773: time.perf_counter() uses again double (GH-3964) | Victor Stinner | 2017-10-12 | 1 | -15/+21 |
|
|
* | Cleanup pytime.c (#3955) | Victor Stinner | 2017-10-11 | 1 | -54/+76 |
|
|
* | bpo-31415: Add _PyTime_GetPerfCounter() and use it for -X importtime (#3936) | Victor Stinner | 2017-10-10 | 1 | -10/+71 |
|
|
* | bpo-31338 (#3374) | Barry Warsaw | 2017-09-15 | 1 | -9/+3 |
|
|
* | bpo-26669: Fix nan arg value error in pytime.c (#3085) | Han Lee | 2017-09-08 | 1 | -0/+14 |
|
|
* | bpo-31373: fix undefined floating-point demotions (#3396) | Benjamin Peterson | 2017-09-07 | 1 | -16/+16 |
|
|
* | Revert "pytime: include winsock2, so we can have a complete timeval type (#33... | Antoine Pitrou | 2017-09-06 | 1 | -1/+0 |
|
|
* | pytime: include winsock2, so we can have a complete timeval type (#3377) | Benjamin Peterson | 2017-09-06 | 1 | -0/+1 |
|
|