| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-52551: Use wcsftime() to implement time.strftime() on Windows (GH-125658) | Serhiy Storchaka | 2024-10-19 | 1 | -4/+0 |
|
|
* | gh-52551: Fix encoding issues in strftime() (GH-125193) | Serhiy Storchaka | 2024-10-17 | 1 | -99/+134 |
|
|
* | gh-123017: Add Android to the list of platforms where `strftime` doesn't supp... | Malcolm Smith | 2024-09-27 | 1 | -1/+6 |
|
|
* | gh-123978: Remove broken time.thread_time() on NetBSD (GH-124116) | Serhiy Storchaka | 2024-09-24 | 1 | -3/+15 |
|
|
* | Revert "gh-123974: Fix time.get_clock_info() on NetBSD (#123975)" (GH-124115) | Serhiy Storchaka | 2024-09-18 | 1 | -5/+1 |
|
|
* | gh-123974: Fix time.get_clock_info() on NetBSD (#123975) | Furkan Onder | 2024-09-13 | 1 | -1/+5 |
|
|
* | gh-121905: Consistently use "floating-point" instead of "floating point" (GH-... | Serhiy Storchaka | 2024-07-19 | 1 | -5/+5 |
|
|
* | gh-121199: Use _Py__has_attribute() in timemodule.c (#121203) | Victor Stinner | 2024-07-01 | 1 | -1/+1 |
|
|
* | gh-118998: Handle errors correctly in `tmtotuple` in `timemodule` (#118999) | Nikita Sobolev | 2024-05-13 | 1 | -10/+17 |
|
|
* | gh-116322: Add Py_mod_gil module slot (#116882) | Brett Simmers | 2024-05-03 | 1 | -0/+1 |
|
|
* | gh-88035: update doc-string of `epoch` in timemodule.c (GH-118076) | lit | 2024-04-19 | 1 | -2/+2 |
|
|
* | gh-116437: Use new C API PyDict_Pop() to simplify the code (GH-116438) | Serhiy Storchaka | 2024-03-07 | 1 | -14/+14 |
|
|
* | gh-115714: Don't use CLOCK_PROCESS_CPUTIME_ID and times() on WASI (GH-115757) | Petr Viktorin | 2024-02-22 | 1 | -5/+11 |
|
|
* | gh-110850: Cleanup PyTime API: PyTime_t are nanoseconds (#115753) | Victor Stinner | 2024-02-21 | 1 | -18/+15 |
|
|
* | gh-110850: Use public PyTime functions (#115746) | Victor Stinner | 2024-02-20 | 1 | -33/+9 |
|
|
* | gh-110850: Rename internal PyTime C API functions (#115734) | Victor Stinner | 2024-02-20 | 1 | -9/+9 |
|
|
* | gh-110850: Cleanup pycore_time.h includes (#115724) | Victor Stinner | 2024-02-20 | 1 | -0/+1 |
|
|
* | gh-110850: Replace _PyTime_t with PyTime_t (#115719) | Victor Stinner | 2024-02-20 | 1 | -37/+37 |
|
|
* | gh-113791: Expose CLOCK_MONOTONIC_RAW_APPROX and CLOCK_UPTIME_RAW_APROX on ma... | Ronald Oussoren | 2024-01-08 | 1 | -6/+10 |
|
|
* | gh-112567: Add _PyTimeFraction C API (#112568) | Victor Stinner | 2023-12-01 | 1 | -35/+19 |
|
|
* | gh-112567: Add _Py_GetTicksPerSecond() function (#112587) | Victor Stinner | 2023-12-01 | 1 | -73/+85 |
|
|
* | gh-111482: Fix time_clockid_converter() on AIX (#112170) | Victor Stinner | 2023-11-16 | 1 | -2/+2 |
|
|
* | gh-111482: Use Argument Clinic for clock_gettime() (#111641) | Victor Stinner | 2023-11-02 | 1 | -32/+65 |
|
|
* | gh-111295: Fix error checking in time extension module init (#111296) | Nikita Sobolev | 2023-10-25 | 1 | -10/+17 |
|
|
* | gh-108294: Add error handling for time.sleep audit event (GH-108363) | Petr Viktorin | 2023-09-05 | 1 | -1/+3 |
|
|
* | gh-108765: Python.h no longer includes <ctype.h> (#108831) | Victor Stinner | 2023-09-03 | 1 | -4/+3 |
|
|
* | gh-108765: Python.h no longer includes <sys/time.h> (#108775) | Victor Stinner | 2023-09-02 | 1 | -1/+1 |
|
|
* | gh-108294: Add time.sleep audit event (GH-108298) | Petr Viktorin | 2023-08-23 | 1 | -0/+2 |
|
|
* | gh-86493: Fix possible leaks in some modules initialization (GH-106768) | Serhiy Storchaka | 2023-07-18 | 1 | -5/+2 |
|
|
* | gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205) | Eric Snow | 2023-05-05 | 1 | -0/+1 |
|
|
* | gh-102255: Improve build support for Windows API partitions (GH-102256) | Max Bachmann | 2023-03-09 | 1 | -1/+7 |
|
|
* | gh-81057: Fix an ifdef in the time module (#100125) | Eric Snow | 2022-12-09 | 1 | -2/+4 |
|
|
* | gh-81057: Move time Globals to _PyRuntimeState (gh-100122) | Eric Snow | 2022-12-08 | 1 | -41/+53 |
|
|
* | gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742) | Serhiy Storchaka | 2022-06-14 | 1 | -7/+2 |
|
|
* | gh-90473: Decrease recursion limit and skip tests on WASI (GH-92803) | Christian Heimes | 2022-05-19 | 1 | -1/+1 |
|
|
* | bpo-40280: Detect presence of time.tzset and thread_time clock (GH-31898) | Christian Heimes | 2022-03-15 | 1 | -1/+3 |
|
|
* | bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g... | Eric Snow | 2022-02-08 | 1 | -2/+2 |
|
|
* | bpo-40280: Address more test failures on Emscripten (GH-31050) | Christian Heimes | 2022-02-05 | 1 | -1/+1 |
|
|
* | bpo-46417: time module uses PyStructSequence_NewType() (GH-30734) | Victor Stinner | 2022-01-21 | 1 | -37/+81 |
|
|
* | bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I... | Kumar Aditya | 2021-12-12 | 1 | -2/+2 |
|
|
* | bpo-45429: Support CREATE_WAITABLE_TIMER_HIGH_RESOLUTION if possible (GH-29203) | Dong-hee Na | 2021-11-16 | 1 | -9/+31 |
|
|
* | bpo-45482: Rename namespaceobject.h to pycore_namespace.h (GH-28975) | Victor Stinner | 2021-10-15 | 1 | -0/+1 |
|
|
* | bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922) | Victor Stinner | 2021-10-13 | 1 | -17/+14 |
|
|
* | bpo-21302: Add nanosleep() implementation for time.sleep() in Unix (GH-28545) | Victor Stinner | 2021-09-25 | 1 | -23/+33 |
|
|
* | bpo-21302: time.sleep() uses waitable timer on Windows (GH-28483) | Victor Stinner | 2021-09-22 | 1 | -43/+110 |
|
|
* | bpo-21302: Add _PyTime_AsNanoseconds() (GH-28350) | Victor Stinner | 2021-09-15 | 1 | -8/+8 |
|
|
* | bpo-21302: Add clock_nanosleep() implementation for time.sleep() (GH-28111) | Livius | 2021-09-13 | 1 | -5/+31 |
|
|
* | bpo-37205: time.time() cannot fail with fatal error (GH-23314) | Victor Stinner | 2020-11-16 | 1 | -22/+65 |
|
|
* | bpo-41100: Support macOS 11 and Apple Silicon (GH-22855) | Ronald Oussoren | 2020-11-08 | 1 | -52/+162 |
|
|
* | bpo-35455: Fix thread_time for Solaris OS (GH-11118) | Jakub KulĂk | 2020-11-02 | 1 | -0/+17 |
|
|