summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* gh-112075: Make instance attributes stored in inline "dict" thread safe (#114...Dino Viehland2024-04-224-24/+17
* gh-116818: Make `sys.settrace`, `sys.setprofile`, and monitoring thread-safe ...Dino Viehland2024-04-197-60/+214
* gh-114099: Modify preprocessor symbol usage to support older macOS SDKs (GH-1...Russell Keith-Magee2024-04-191-1/+2
* GH-116202: Incorporate invalidation check into _START_EXECUTOR. (GH-118044)Mark Shannon2024-04-194-3/+9
* GH-115419: Improve list of escaping functions (GH-118054)Mark Shannon2024-04-191-1/+3
* gh-117535: Change unknown filename of warnings from `sys` to `<sys>` (#118018)Tian Gao2024-04-191-2/+2
* gh-112069: Add _PySet_NextEntryRef to be thread-safe. (gh-117990)Donghee Na2024-04-182-11/+19
* GH-118036: Fix a bug with CALL_STAT_INC (#117933)Guido van Rossum2024-04-181-2/+0
* gh-117987: Restore several functions removed in Python 3.13 alpha 1 (GH-117993)Victor Stinner2024-04-182-8/+4
* GH-115419: Tidy up tier 2 optimizer. Merge peephole pass into main pass (GH-1...Mark Shannon2024-04-183-132/+169
* gh-118023: Fix reference leak (#118025)Kirill Podoprigora2024-04-181-0/+2
* gh-117657: Quiet erroneous TSAN reports of data races in `_PySeqLock` (#117955)mpage2024-04-171-3/+3
* gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)Irit Katriel2024-04-173-164/+638
* gh-117929: Restore removed PyEval_InitThreads() function (#117931)Victor Stinner2024-04-171-2/+1
* 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