summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* GH-117760: Streamline the trashcan mechanism (GH-117763)Mark Shannon2024-04-171-0/+2
* gh-115178: Add Counts of UOp Pairs to pystats (GH-115181)Jeff Glass2024-04-162-0/+11
* gh-117657: Quiet more TSAN warnings due to incorrect modeling of compare/exch...mpage2024-04-151-2/+2
* gh-117657: Quiet TSAN warning about a data race between `start_the_world()` a...mpage2024-04-151-1/+2
* gh-117376: Partial implementation of deferred reference counting (#117696)Sam Gross2024-04-121-1/+18
* gh-117764: Fix and add signatures for many builtins (GH-117769)Serhiy Storchaka2024-04-124-17/+17
* gh-117764: Add signatures for some functions in the sys module (GH-117770)Serhiy Storchaka2024-04-122-35/+73
* gh-76785: Handle Legacy Interpreters Properly (gh-117490)Eric Snow2024-04-112-14/+30
* gh-117649: Raise ImportError for unsupported modules in free-threaded build (...Sam Gross2024-04-112-1/+19
* gh-76785: Add More Tests to test_interpreters.test_api (gh-117662)Eric Snow2024-04-114-15/+299
* gh-107674: Remove some unnecessary code in instrumentation code (GH-117393)Tian Gao2024-04-091-1/+1
* gh-117439: Make refleak checking thread-safe without the GIL (#117469)Sam Gross2024-04-082-2/+10
* gh-111926: Make weakrefs thread-safe in free-threaded builds (#117168)mpage2024-04-081-0/+9
* GH-117512: Allow 64-bit JIT operands on 32-bit platforms (GH-117527)Brandt Bucher2024-04-061-28/+34
* gh-117457: Regen executor cases post PR #117477 (#117559)Erlend E. Aasland2024-04-051-2/+8
* GH-117457: Correct pystats uop "miss" counts (GH-117477)Michael Droettboom2024-04-042-136/+536
* gh-112075: Make _PyDict_LoadGlobal thread safe (#117529)Dino Viehland2024-04-043-3/+0
* gh-117494: extract the Instruction Sequence data structure into a separate fi...Irit Katriel2024-04-044-180/+196
* gh-116968: Reimplement Tier 2 counters (#117144)Guido van Rossum2024-04-048-171/+117
* gh-116168: Remove extra `_CHECK_STACK_SPACE` uops (#117242)Peter Lazorchak2024-04-034-17/+104
* gh-76785: Raise InterpreterError, Not RuntimeError (gh-117489)Eric Snow2024-04-033-6/+22
* gh-76785: Fix a Refleak in _interpreters.new_config() (gh-117491)Eric Snow2024-04-031-0/+2
* gh-76785: Add PyInterpreterConfig Helpers (gh-117170)Eric Snow2024-04-023-22/+305
* Fix successor opcode name printing in Tier 2 DEOPT debug message (#117471)Guido van Rossum2024-04-021-1/+1
* GH-115776: Embed the values array into the object, for "normal" Python object...Mark Shannon2024-04-027-110/+106
* gh-117411: move PyFutureFeatures to pycore_symtable.h and make it private (#1...Irit Katriel2024-04-026-15/+16
* Silence compiler warnings in gc.c (#117422)Guido van Rossum2024-04-011-0/+3
* gh-91565: Replace bugs.python.org links with Devguide/GitHub ones (GH-91568)Steve (Gadget) Barnes2024-04-011-1/+1
* gh-117303: Don't detach in `PyThreadState_DeleteCurrent()` (#117304)Sam Gross2024-03-291-2/+0
* gh-116664: In _warnings.c, make filters_version access thread-safe (#117374)Erlend E. Aasland2024-03-291-6/+9
* gh-117300: Use stop the world to make `sys._current_frames` and `sys._current...Sam Gross2024-03-291-0/+4
* gh-117323: Make `cell` thread-safe in free-threaded builds (#117330)Sam Gross2024-03-294-36/+23
* gh-112529: Don't untrack tuples or dicts with zero refcount (#117370)Sam Gross2024-03-291-15/+18
* gh-116664: Fix unused var warnings in _warnings.c in non-free-threaded builds...Erlend E. Aasland2024-03-291-0/+8
* GH-117121: Add pystats to JIT builds (GH-117346)Michael Droettboom2024-03-282-1/+3
* gh-116664: Make module state Py_SETREF's in _warnings thread-safe (#116959)Erlend E. Aasland2024-03-281-21/+37
* gh-110481: Fix biased reference counting queue initialization. (#117271)Sam Gross2024-03-282-6/+18
* gh-117266: Fix crashes on user-created AST subclasses (GH-117276)Jelle Zijlstra2024-03-281-2/+13
* gh-114099: Additions to standard library to support iOS (GH-117052)Russell Keith-Magee2024-03-282-3/+11
* gh-117288: Allocate fewer label IDs in _PyCfg_ToInstructionSequence (#117290)Irit Katriel2024-03-273-6/+36
* gh-115775: Compiler adds __static_attributes__ field to classes (#115913)Irit Katriel2024-03-261-1/+53
* GH-117108: Set the "old space bit" to "visited" for all young objects (#117213)Mark Shannon2024-03-261-17/+37
* GH-116422: Tier2 hot/cold splitting (GH-116813)Mark Shannon2024-03-269-751/+834
* A few minor tweaks to get stats working and compiling cleanly. (#117219)Mark Shannon2024-03-252-6/+3
* gh-117176: Fix compiler warning in Python/optimizer_bytecodes.c (GH-117199)Kirill Podoprigora2024-03-242-2/+2
* gh-117180: Complete call sequence when trace stack overflow (GH-117184)Ken Jin2024-03-231-0/+1
* GH-117108: Change the size of the GC increment to about 1% of the total heap ...Mark Shannon2024-03-222-16/+16
* gh-113024: C API: Add PyObject_GenericHash() function (GH-113025)Serhiy Storchaka2024-03-221-1/+7
* gh-105716: Fix _PyInterpreterState_IsRunningMain() For Embedders (gh-117140)Eric Snow2024-03-222-20/+19
* gh-117045: Add code object to function version cache (#117028)Guido van Rossum2024-03-214-38/+106