summaryrefslogtreecommitdiffstats
path: root/Programs
Commit message (Expand)AuthorAgeFilesLines
* gh-139927: Fix test_embed on OpenIndiana (#142514)Victor Stinner2025-12-101-9/+14
* gh-140011: Delete importdl assertion that prevents importing embedded modules...Itamar Oren2025-11-261-0/+173
* gh-116146: Avoid empty braces in _testembed.c (GH-141556)Petr Viktorin2025-11-141-1/+1
* gh-116146: Add C-API to create module from spec and initfunc (GH-139196)Itamar Oren2025-11-141-0/+111
* gh-135801: Add the module parameter to compile() etc (GH-139652)Serhiy Storchaka2025-11-132-2/+2
* gh-89745: Remove test_embed.test_init_read_set() (#139500)Victor Stinner2025-10-021-39/+0
* gh-139146: Check `calloc()` results in `_testembed.c::test_pre_initialization...Denis Sergeev2025-09-291-0/+10
* gh-128639: Don't assume one thread in subinterpreter finalization with fixed ...Peter Bierma2025-09-171-3/+6
* gh-138886: Remove deprecated `PySys_ResetWarnOptions` C-API function (#138887)sobolevn2025-09-151-0/+4
* Use PyInitConfig API in _freeze_module.c (#137423)Victor Stinner2025-08-061-16/+29
* gh-137093: Fix race condition in `test_embed.test_bpo20891` (GH-137094)Peter Bierma2025-07-251-18/+6
* GH-133711: Enable UTF-8 mode by default (PEP 686) (#133712)Adam Turner2025-07-151-2/+2
* GH-132554: "Virtual" iterators (GH-132555)Mark Shannon2025-05-271-1/+1
* gh-131185: Use a proper thread-local for cached thread states (gh-132510)Peter Bierma2025-05-211-1/+28
* Revert "gh-128639: Don't assume one thread in subinterpreter finalization (gh...Peter Bierma2025-05-191-6/+3
* gh-128639: Don't assume one thread in subinterpreter finalization (gh-128640)Peter Bierma2025-05-191-3/+6
* gh-133644: Avoid deprecated Py_SetProgramName() in _testembed.c (#133665)Victor Stinner2025-05-091-53/+24
* gh-102567: Add -X importtime=2 for logging an importtime message for already-...Noah Kim2025-05-061-2/+2
* gh-132661: Implement PEP 750 (#132662)Lysandros Nikolaou2025-04-301-13/+13
* gh-130704: Strength reduce `LOAD_FAST{_LOAD_FAST}` (#130708)mpage2025-04-011-7/+7
* GH-130296: Remove `_PyOpcode_max_stack_effect` as it is no longer used (GH-13...Mark Shannon2025-03-201-1/+1
* gh-126835: Move constant tuple folding from ast_opt to CFG (#130769)Yan Yanchii2025-03-191-8/+8
* gh-130480: Move duplicate `LOAD_SMALL_INT` optimization from codegen to CFG (...Yan Yanchii2025-03-141-30/+31
* GH-128534: Fix behavior of branch monitoring for `async for` (GH-130847)Mark Shannon2025-03-071-11/+11
* gh-130574: renumber RESUME opcode from 149 to 128 (GH-130685)Tomasz Pytel2025-03-061-1/+1
* gh-100239: replace BINARY_SUBSCR & family by BINARY_OP with oparg NB_SUBSCR (...Irit Katriel2025-02-071-14/+15
* GH-128914: Remove all but one conditional stack effects (GH-129226)Mark Shannon2025-01-271-10/+10
* Revert "GH-128914: Remove conditional stack effects from `bytecodes.c` and th...Sam Gross2025-01-231-12/+12
* GH-128914: Remove conditional stack effects from `bytecodes.c` and the code g...Mark Shannon2025-01-201-12/+12
* gh-129033: Remove _PyInterpreterState_SetConfig() function (#129048)Victor Stinner2025-01-201-43/+0
* gh-129033: Remove _Py_InitializeMain() function (#129034)Victor Stinner2025-01-201-35/+0
* GH-128375: Better instrument for `FOR_ITER` (GH-128445)Mark Shannon2025-01-061-33/+33
* GH-122548: Implement branch taken and not taken events for sys.monitoring (GH...Mark Shannon2024-12-191-33/+33
* gh-115999: Enable BINARY_SUBSCR_GETITEM for free-threaded build (gh-127737)Donghee Na2024-12-191-1/+1
* gh-125063: marshal: Add version 5, improve documentation (GH-126829)Petr Viktorin2024-11-151-0/+1
* GH-125837: Split `LOAD_CONST` into three. (GH-125972)Mark Shannon2024-10-291-29/+29
* gh-125517: Fix unreachable code warnings in `_testembed.c` (#125518)sobolevn2024-10-151-8/+12
* gh-125234: Make PyInitConfig_Free(NULL) a no-op (#125266)RUANG (Roy James)2024-10-151-0/+1
* bpo-34206: Improve docs and test coverage for pre-init functions (#8023)Alyssa Coghlan2024-10-081-8/+33
* gh-107954: Fix configuration type for the perf profiler (#124636)Pablo Galindo Salgado2024-09-271-0/+5
* gh-124160: Pass main_tstate to update_global_state_for_extension() (#124164)luk13372024-09-191-0/+9
* gh-123919: Fix null handling in `_freeze_module.c` (#123920)sobolevn2024-09-111-0/+11
* gh-107954, PEP 741: Add PyInitConfig_AddModule() function (#123668)Victor Stinner2024-09-041-0/+57
* gh-107954, PEP 741: Adjust Python initialization config (#123663)Victor Stinner2024-09-041-12/+34
* gh-107954, PEP 741: Add PyInitConfig C API (#123502)Victor Stinner2024-09-031-0/+139
* gh-123022: Fix crash with `Py_Initialize` in background thread (#123052)Sam Gross2024-08-171-0/+18
* GH-122390: Replace `_Py_GetbaseOpcode` with `_Py_GetBaseCodeUnit` (GH-122942)Mark Shannon2024-08-131-9/+9
* gh-117482: Fix the Slot Wrapper Inheritance Tests (gh-122248)Eric Snow2024-07-291-3/+11
* GH-122160: Remove BUILD_CONST_KEY_MAP opcode. (GH-122164)Mark Shannon2024-07-251-11/+11
* GH-120507: Lower the `BEFORE_WITH` and `BEFORE_ASYNC_WITH` instructions. (#12...Mark Shannon2024-06-181-11/+11