summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* gh-128509: Add `sys._is_immortal` for identifying immortal objects (#128510)Peter Bierma2025-01-312-1/+49
* gh-126108: Fix potential null pointer dereference in `PySys_AddWarnOptionUnic...Valery Fedorenko2025-01-311-3/+4
* gh-129354: Use PyErr_FormatUnraisable() function (#129514)Victor Stinner2025-01-312-14/+26
* GH-128563: Simplify recursion check in `_PyEval_EvalFrameDefault` (GH-129481)Mark Shannon2025-01-311-6/+5
* gh-129354: Fix grammar in PyErr_FormatUnraisable() (#129475)Victor Stinner2025-01-318-29/+42
* gh-129354: Use PyErr_FormatUnraisable() function (#129435)Victor Stinner2025-01-301-1/+1
* gh-128911: Add PyImport_ImportModuleAttr() function (#128912)Victor Stinner2025-01-302-6/+6
* gh-129236: Use `stackpointer` in free threaded GC (#129240)Sam Gross2025-01-291-28/+52
* gh-100239: specialize bitwise logical binary ops on ints (#128927)Irit Katriel2025-01-292-1/+55
* GH-126599: Remove the PyOptimizer API (GH-129194)Brandt Bucher2025-01-297-132/+164
* gh-115999: Enable free-threaded specialization of LOAD_CONST (#129365)T. Wouters2025-01-292-4/+24
* GH-128914: Remove all but one conditional stack effects (GH-129226)Mark Shannon2025-01-279-436/+229
* gh-111178: fix UBSan failures in `Python/traceback.c` (GH-128259)Bénédikt Tran2025-01-271-16/+26
* gh-128563: Move labels in ceval.c to bytecodes.c (GH-129112)Ken Jin2025-01-273-135/+276
* gh-128799: Add frame of except* to traceback when wrapping a naked exception ...Irit Katriel2025-01-254-5/+15
* gh-129244: Remove workaround for MSVC compiler crash (#129263)Michael Droettboom2025-01-251-21/+0
* Remove unused DPRINTF in ceval.c (GH-129282)Chris Eibl2025-01-251-7/+0
* gh-129185: Simplify PyTraceMalloc_Track() (#129256)Victor Stinner2025-01-242-26/+3
* gh-129185: Use PyMutex in tracemalloc (#129246)Victor Stinner2025-01-241-14/+3
* gh-129173: Use `_PyUnicodeError_GetParams` in `PyCodec_IgnoreErrors` (#129174)Bénédikt Tran2025-01-241-19/+43
* gh-126004: Fix positions handling in `codecs.backslashreplace_errors` (#127676)Bénédikt Tran2025-01-231-65/+64
* gh-129185: Remove internal TRACE_RAW_MALLOC macro (#129218)Victor Stinner2025-01-231-45/+3
* gh-129185: Fix PyTraceMalloc_Untrack() at Python exit (#129191)Victor Stinner2025-01-232-3/+26
* gh-126004: Fix positions handling in `codecs.replace_errors` (#127674)Bénédikt Tran2025-01-231-24/+22
* gh-126004: Fix positions handling in `codecs.xmlcharrefreplace_errors` (#127675)Bénédikt Tran2025-01-231-88/+101
* Revert "GH-128914: Remove conditional stack effects from `bytecodes.c` and th...Sam Gross2025-01-2312-720/+743
* gh-127936, PEP 757: Convert marshal module to use import/export API for ints ...Sergey B Kirpichev2025-01-231-75/+168
* gh-119182: Use public PyUnicodeWriter in Python-ast.c (#129209)Victor Stinner2025-01-231-35/+39
* gh-119182: Use public PyUnicodeWriter in ast_unparse.c (#129208)Victor Stinner2025-01-231-99/+114
* gh-128627: Emscripten: Fix address calculation for wasm-gc trampoline (#128782)Hood Chatham2025-01-231-9/+7
* GH-91048: Add utils for capturing async call stack for asyncio programs and e...Yury Selivanov2025-01-222-17/+3
* gh-128863: Deprecate private C API functions (#128864)Victor Stinner2025-01-222-9/+1
* GH-128682: Change a couple of functions to only steal references on success. ...Mark Shannon2025-01-224-15/+24
* gh-128563: Move GO_TO_INSTRUCTION and PREDICT to cases generator (GH-129115)Ken Jin2025-01-222-56/+26
* gh-128563: Move lltrace into the frame struct (GH-129113)Ken Jin2025-01-214-16/+20
* gh-128679: Use _PyThreadState_GET() in tracemalloc.c (#129126)Victor Stinner2025-01-211-7/+2
* gh-126925: Make PyConfig.use_system_logger read-only (#129124)Victor Stinner2025-01-211-1/+1
* GH-128563: Add new frame owner type for interpreter entry frames (GH-129078)Mark Shannon2025-01-219-42/+26
* GH-127953: Make line number lookup O(1) regardless of the size of the code ob...Mark Shannon2025-01-213-159/+204
* GH-128914: Remove conditional stack effects from `bytecodes.c` and the code g...Mark Shannon2025-01-2012-743/+720
* GH-128939: Refactor JIT optimize structs (GH-128940)Mark Shannon2025-01-204-462/+693
* gh-129033: Remove _PyInterpreterState_SetConfig() function (#129048)Victor Stinner2025-01-202-48/+0
* gh-111178: Generate correct signature for most self converters (#128447)Erlend E. Aasland2025-01-202-26/+26
* gh-128360: Add `_Py_AssertHoldsTstate` as assertion for holding a thread stat...Peter Bierma2025-01-207-25/+26
* gh-129033: Remove _Py_InitializeMain() function (#129034)Victor Stinner2025-01-201-12/+0
* gh-100239: Handle NaN and zero division in guards for `BINARY_OP_EXTEND` (#12...Kirill Podoprigora2025-01-191-6/+24
* gh-128955: Fix goto if tlbc creation fails when throwing into a generator (#1...mpage2025-01-171-1/+1
* gh-128923: Use zero to indicate unassigned unique id (#128925)Sam Gross2025-01-171-13/+16
* GH-126599: Remove the "counter" optimizer/executor (GH-126853)Xuanteng Huang2025-01-164-122/+0
* gh-100239: specialize long tail of binary operations (#128722)Irit Katriel2025-01-166-40/+273