summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-116808: Fix optimized trace length histogram (GH-116827)Michael Droettboom2024-03-191-1/+2
* gh-115756: make PyCode_GetFirstFree an unstable API (GH-115781)Bogdan Romanyuk2024-03-192-2/+2
* gh-108716: Cleanup remaining deepfreeze infrastructure (#116919)Guido van Rossum2024-03-182-34/+0
* gh-116916: Remove separate next_func_version counter (#116918)Guido van Rossum2024-03-181-1/+0
* Cleanup tier2 debug output (#116920)Guido van Rossum2024-03-185-22/+50
* gh-63207: Use GetSystemTimePreciseAsFileTime() in time.time() (#116822)Victor Stinner2024-03-181-16/+22
* gh-116664: Ensure thread-safe dict access in _warnings (#116768)Erlend E. Aasland2024-03-181-29/+32
* gh-114271: Fix race in `Thread.join()` (#114839)mpage2024-03-162-48/+1
* gh-112536: Add TSAN builds on Github Actions (#116872)Donghee Na2024-03-161-0/+4
* GH-115802: Reduce the size of _INIT_CALL_PY_EXACT_ARGS. (GH-116856)Mark Shannon2024-03-153-72/+54
* gh-116735: Use `MISSING` for `CALL` event if argument is absent (GH-116737)Tian Gao2024-03-152-2/+2
* GH-116422: Modify a few uops so that they can be supported by tier 2 with hot...Mark Shannon2024-03-153-53/+45
* gh-111696, PEP 737: Add PyType_GetModuleName() function (#116824)Victor Stinner2024-03-141-2/+1
* GH-116422: Factor out eval breaker checks at end of calls into its own micro-...Mark Shannon2024-03-144-227/+327
* gh-88494: Use QueryPerformanceCounter() for time.monotonic() (#116781)Victor Stinner2024-03-141-138/+73
* gh-90300: Fix undocumented envvars in the Python CLI help (GH-116765)Serhiy Storchaka2024-03-141-0/+3
* Docs: fix spelling of the word 'transferring' (#116641)guangwu2024-03-131-3/+3
* gh-116760: Fix pystats for trace attempts (GH-116761)Michael Droettboom2024-03-133-2/+1
* gh-90300: Document equivalent -X options for envvars in the Python CLI help (...Serhiy Storchaka2024-03-131-29/+31
* gh-90300: Sort the -X options and some envvars in the Python CLI help (GH-116...Serhiy Storchaka2024-03-131-40/+43
* gh-90300: Fix cmdline.rst (GH-116721)Serhiy Storchaka2024-03-131-2/+2
* gh-115419: Change default sym to not_null (GH-116562)Ken Jin2024-03-132-90/+100
* gh-116626: Emit `CALL` events for all `INSTRUMENTED_CALL_FUNCTION_EX` (GH-116...Tian Gao2024-03-132-28/+29
* GH-116098: Remove dead frame object creation code (GH-116687)Tian Gao2024-03-121-18/+9
* gh-116604: Check for `gcstate->enabled` in _Py_RunGC in free-threaded build (...Sam Gross2024-03-121-0/+4
* gh-116604: Correctly honor the gc status when calling _Py_RunGC (#116628)Pablo Galindo Salgado2024-03-121-0/+4
* gh-116515: Clear thread-local state before tstate_delete_common() (#116517)Sam Gross2024-03-111-1/+2
* gh-110850: Fix _PyTime_FromSecondsDouble() API (#116606)Victor Stinner2024-03-111-7/+4
* gh-116167: Allow disabling the GIL with `PYTHON_GIL=0` or `-X gil=0` (#116338)Brett Simmers2024-03-113-0/+71
* GH-116596: Better determination of escaping uops. (GH-116597)Mark Shannon2024-03-112-4/+5
* gh-116590: Fix unused `current_thread_holds_gil` function warning (#116591)Nikita Sobolev2024-03-111-0/+2
* GH-116468: Use constants instead of `oparg` in stack effects when `oparg` is ...Mark Shannon2024-03-114-103/+93
* gh-108724: Fix _PySemaphore_Wait call during thread deletion (#116483)Sam Gross2024-03-081-4/+6
* gh-112075: Support freeing object memory via QSBR (#116344)Dino Viehland2024-03-081-2/+8
* gh-115103: Fix unregistering of QSBR state (#116480)Sam Gross2024-03-081-3/+7
* gh-116447: Fix possible UB in `arraymodule` and `getargs` (#116459)Nikita Sobolev2024-03-081-2/+2
* GH-113710: Fix optimization of globals using `_CHECK_FUNCTION` (GH-116460)Mark Shannon2024-03-083-10/+16
* gh-116396: Pass "detached_state" argument to tstate_set_detached (#116398)Sam Gross2024-03-071-6/+6
* gh-116381: Remove bad specializations, add fail stats (GH-116464)Ken Jin2024-03-076-194/+41
* gh-116420: Fix unused var compilation warnings (GH-116466)Ken Jin2024-03-072-0/+24
* gh-116437: Use new C API PyDict_Pop() to simplify the code (GH-116438)Serhiy Storchaka2024-03-076-39/+36
* gh-116397: Move the _PyGC_ClearAllFreeLists to the safe point (gh-116414)Donghee Na2024-03-061-2/+5
* gh-116381: Specialize CONTAINS_OP (GH-116385)Ken Jin2024-03-066-8/+373
* gh-115103: Delay reuse of mimalloc pages that store PyObjects (#115435)Sam Gross2024-03-062-10/+9
* GH-113710: Tier 2 optimizer: check the function instead of checking globals. ...Mark Shannon2024-03-064-36/+27
* GH-115687: Most comparisons create Booleans, so propagate that information (G...Mark Shannon2024-03-062-16/+68
* gh-107954: Add PyConfig_MEMBER_BOOL type to PyConfigSpec (#116359)Victor Stinner2024-03-061-40/+50
* Fix debug output for optimized executor (#116337)Guido van Rossum2024-03-051-3/+4
* GH-115685: Split `_TO_BOOL_ALWAYS_TRUE` into micro-ops (GH-116352)Mark Shannon2024-03-055-21/+27
* GH-115819: Eliminate Boolean guards when value is known (GH-116355)Mark Shannon2024-03-054-0/+97