summaryrefslogtreecommitdiffstats
path: root/Include/cpython
Commit message (Expand)AuthorAgeFilesLines
* GH-115709: Invalidate executors when a local variable is changed via frame.f_...Mark Shannon2024-05-061-3/+9
* gh-118362: Fix thread safety around lookups from the type cache in the face o...Dino Viehland2024-05-065-0/+29
* gh-74929: Implement PEP 667 (GH-115153)Tian Gao2024-05-042-0/+8
* gh-111997: C-API for signalling monitoring events (#116413)Irit Katriel2024-05-041-0/+250
* gh-93502: Add new C-API functions to trace object creation and destruction (#...Pablo Galindo Salgado2024-05-021-0/+10
* GH-117442: Check eval-breaker at start (rather than end) of tier 2 loops (GH-...Mark Shannon2024-05-021-1/+1
* gh-110850: Add PyTime_TimeRaw() function (#118394)Victor Stinner2024-05-011-0/+4
* GH-115802: Use the GHC calling convention in JIT code (GH-118287)Brandt Bucher2024-05-011-0/+1
* gh-116767: fix crash on 'async with' with many context managers (GH-118348)Irit Katriel2024-05-011-1/+1
* GH-118095: Make invalidating and clearing executors memory safe (GH-118459)Mark Shannon2024-05-011-1/+2
* gh-118331: Handle errors in _PyObject_SetManagedDict (#118334)Sam Gross2024-04-291-1/+1
* gh-117657: Fixes a few small TSAN issues in dictobject (#118200)Dino Viehland2024-04-251-0/+4
* gh-118207: Rename the COMMON_FIELDS macro in funcobject.h and undef it after ...Itamar Oren2024-04-251-3/+5
* gh-112075: Make instance attributes stored in inline "dict" thread safe (#114...Dino Viehland2024-04-221-0/+1
* gh-116818: Make `sys.settrace`, `sys.setprofile`, and monitoring thread-safe ...Dino Viehland2024-04-194-0/+57
* gh-112069: Make PySet_GET_SIZE to be atomic safe. (gh-118053)Donghee Na2024-04-181-0/+4
* GH-117760: Streamline the trashcan mechanism (GH-117763)Mark Shannon2024-04-172-28/+26
* gh-117645: Increase WASI stack size from 512 KiB to 8 MiB (#117674)Victor Stinner2024-04-161-8/+3
* gh-115178: Add Counts of UOp Pairs to pystats (GH-115181)Jeff Glass2024-04-161-0/+1
* gh-117649: Raise ImportError for unsupported modules in free-threaded build (...Sam Gross2024-04-111-1/+10
* gh-111926: Make weakrefs thread-safe in free-threaded builds (#117168)mpage2024-04-081-0/+8
* gh-111140: PyLong_From/AsNativeBytes: Take *flags* rather than just *endianne...Steve Dower2024-04-051-5/+19
* gh-116968: Reimplement Tier 2 counters (#117144)Guido van Rossum2024-04-042-14/+12
* GH-115776: Embed the values array into the object, for "normal" Python object...Mark Shannon2024-04-021-2/+1
* gh-117411: move PyFutureFeatures to pycore_symtable.h and make it private (#1...Irit Katriel2024-04-021-20/+0
* GH-116422: Tier2 hot/cold splitting (GH-116813)Mark Shannon2024-03-261-2/+49
* A few minor tweaks to get stats working and compiling cleanly. (#117219)Mark Shannon2024-03-251-2/+2
* gh-116936: Add PyType_GetModuleByDef() to the limited C API (#116937)Victor Stinner2024-03-251-1/+0
* gh-117008: Fix functools test_recursive_pickle() (#117009)Victor Stinner2024-03-231-0/+2
* gh-113024: C API: Add PyObject_GenericHash() function (GH-113025)Serhiy Storchaka2024-03-221-0/+1
* gh-71052: Add Android build script and instructions (#116426)Malcolm Smith2024-03-211-0/+4
* gh-116996: Add pystats about _Py_uop_analyse_and_optimize (GH-116997)Michael Droettboom2024-03-211-1/+6
* gh-76785: Drop PyInterpreterID_Type (gh-117101)Eric Snow2024-03-211-14/+0
* gh-76785: Clean Up Interpreter ID Conversions (gh-117048)Eric Snow2024-03-211-1/+4
* gh-115756: make PyCode_GetFirstFree an unstable API (GH-115781)Bogdan Romanyuk2024-03-191-1/+5
* gh-116941: Fix pyatomic_std.h syntax errors (#116967)Sam Gross2024-03-181-0/+2
* gh-116869: Make C API compatible with ISO C90 (#116950)Victor Stinner2024-03-181-1/+2
* gh-116869: Fix redefinition of the _PyOptimizerObject type (#116963)Victor Stinner2024-03-181-2/+2
* gh-116809: Restore removed _PyErr_ChainExceptions1() function (#116900)Victor Stinner2024-03-161-0/+4
* gh-114271: Fix race in `Thread.join()` (#114839)mpage2024-03-161-26/+0
* gh-116167: Allow disabling the GIL with `PYTHON_GIL=0` or `-X gil=0` (#116338)Brett Simmers2024-03-111-0/+3
* gh-111389: expose PyHASH_INF/BITS/MODULUS/IMAG macros as public (#111418)Sergey B Kirpichev2024-03-091-5/+11
* chore: fix typos (#116345)cui fliter2024-03-051-1/+1
* GH-115802: JIT "small" code for Windows (GH-115964)Brandt Bucher2024-02-291-3/+0
* gh-115168: Add pystats counter for invalidated executors (GH-115169)Michael Droettboom2024-02-262-2/+3
* gh-113706: Update comment about long int representation (#113707)Michael Droettboom2024-02-261-10/+21
* gh-112075: Make PyDictKeysObject thread-safe (#114741)Dino Viehland2024-02-214-1/+53
* gh-112175: Add `eval_breaker` to `PyThreadState` (#115194)Brett Simmers2024-02-201-0/+5
* GH-112354: Initial implementation of warm up on exits and trace-stitching (GH...Mark Shannon2024-02-202-6/+21
* gh-115103: Implement delayed memory reclamation (QSBR) (#115180)Sam Gross2024-02-164-1/+57