summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* gh-100239: specialize BINARY_OP/SUBSCR for list-slice (#132626)Irit Katriel2025-05-016-2/+162
* PyStats: Make sure that the `failure_kinds` array is big enough. (#133245)Mark Shannon2025-05-011-1/+3
* gh-132775: Add _PyPickle_GetXIData() (gh-133107)Eric Snow2025-04-301-0/+452
* GH-125515: Remove two unused error branches. (#133181)Russell Keith-Magee2025-04-303-28/+0
* GH-124715: Move trashcan mechanism into `Py_Dealloc` (GH-132280)Mark Shannon2025-04-309-25/+12
* gh-132661: Implement PEP 750 (#132662)Lysandros Nikolaou2025-04-3014-49/+896
* gh-133036: Deprecate codecs.open (#133038)Inada Naoki2025-04-301-5/+13
* Get rid of ERROR_IF's "label" parameter (GH-132654)Brandt Bucher2025-04-302-126/+125
* GH-125515: Mark code after "return" as unreachable in the cases generator (#1...Brandt Bucher2025-04-301-3/+0
* GH-132508: Use tagged integers on the evaluation stack for the last instructi...Mark Shannon2025-04-298-48/+50
* gh-133079: Remove Py_C_RECURSION_LIMIT & PyThreadState.c_recursion_remaining ...Petr Viktorin2025-04-292-2/+2
* GH-132554: Add stats for GET_ITER (GH-132592)Mark Shannon2025-04-294-0/+62
* Revert gh-127266: avoid data races when updating type slots (gh-131174) (gh-1...Neil Schemenauer2025-04-291-14/+0
* gh-87859: Track Code Object Local Kinds For Arguments (gh-132980)Eric Snow2025-04-291-23/+44
* gh-132775: Add _PyCode_ReturnsOnlyNone() (gh-132981)Eric Snow2025-04-291-1/+1
* gh-132775: Add _PyMarshal_GetXIData() (gh-133108)Eric Snow2025-04-281-0/+43
* gh-127266: avoid data races when updating type slots (gh-131174)Neil Schemenauer2025-04-281-0/+14
* gh-132775: Add _PyBytes_GetXIData() (gh-133101)Eric Snow2025-04-282-14/+76
* gh-132775: Drop PyUnstable_InterpreterState_GetMainModule() (gh-132978)Eric Snow2025-04-283-8/+49
* gh-132775: Cleanup Related to crossinterp.c Before Further Changes (gh-132974)Eric Snow2025-04-282-147/+157
* gh-132952: Speed up startup by importing _io instead of io (#132957)Jelle Zijlstra2025-04-281-2/+2
* gh-130907: Treat all module-level annotations as conditional (#131550)Jelle Zijlstra2025-04-286-5/+97
* gh-127604: ensure `-ldl` is passed only once to the linker (#133071)Bénédikt Tran2025-04-281-2/+2
* gh-132983: Introduce `compression` package and move `_compression` module (GH...Emma Smith2025-04-271-1/+1
* gh-131798: JIT - Use `sym_new_type` instead of `sym_new_not_null` for _BUILD_...Nadeshiko Manju2025-04-272-2/+10
* gh-131798: JIT: Propagate the result in `_BINARY_OP_SUBSCR_TUPLE_INT` (GH-133...Tomas R.2025-04-262-1/+42
* gh-132987: Support __index__() for "k" and "K" formats in PyArg_Parse (GH-132...Serhiy Storchaka2025-04-261-6/+12
* gh-132781: fix refleaks in `crossinterp_exceptions.h` post gh-132782 (#132989)Bénédikt Tran2025-04-261-0/+2
* gh-132781: Make NotShareableError a TypeError Subclass (gh-132973)Eric Snow2025-04-251-4/+3
* gh-132781: Cleanup Code Related to NotShareableError (gh-132782)Eric Snow2025-04-254-102/+274
* gh-131798: JIT: Narrow the return type of _CALL_LEN to int (#132940)Diego Russo2025-04-252-1/+5
* gh-132776: Revert Moving memoryview XIData Code to memoryobject.c (gh-132960)Eric Snow2025-04-253-43/+4
* gh-132950: Check for Py_SUPPORTS_REMOTE_DEBUG in sys.is_remote_debug_enabled ...Pablo Galindo Salgado2025-04-251-1/+1
* gh-107954: Add audit event to PyConfig_Set() (#132958)Victor Stinner2025-04-251-0/+4
* gh-107954: Allow setting cpu_count in PyConfig_Set() (#132954)Victor Stinner2025-04-251-7/+23
* gh-91048: Fix _testexternalinspection.c on FreeBSD (#132945)Victor Stinner2025-04-251-3/+5
* gh-91048: Refactor _testexternalinspection and add Windows support (#132852)Pablo Galindo Salgado2025-04-252-743/+799
* gh-129027: Raise DeprecationWarning for sys._clear_type_cache (#129043)Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి)2025-04-251-0/+8
* gh-132909: handle overflow for `'K'` format in `do_mkvalue` (#132911)Bénédikt Tran2025-04-251-1/+2
* gh-127604: Only define dump_pointer() if CAN_C_BACKTRACE (#132897)Victor Stinner2025-04-251-0/+2
* gh-131591: Implement PEP 768 support for FAT mac binaries and 32 bit binaries...Pablo Galindo Salgado2025-04-251-7/+129
* gh-132776: Cleanup for XIBufferViewType (gh-132821)Eric Snow2025-04-253-4/+43
* GH-131798: Split up and optimize CALL_TUPLE_1 in the JIT (GH-132851)Tomas R.2025-04-245-20/+72
* GH-131798: Split up and optimize CALL_STR_1 in the JIT (GH-132849)Tomas R.2025-04-245-20/+72
* gh-132859: Run debugger scripts in their own namespaces (#132860)Matt Wozniski2025-04-231-13/+25
* gh-127604: Replace dprintf() with _Py_write_noraise() (#132854)Victor Stinner2025-04-231-16/+52
* gh-131591: Check for remote debug in PyErr_CheckSignals (#132853)Pablo Galindo Salgado2025-04-231-26/+33
* gh-127604: Allow faulthandler to dumpC stack on MacOS (#132841)Pablo Galindo Salgado2025-04-231-3/+20
* gh-132758: Fix tail call and pystats builds (GH-132759)Ken Jin2025-04-232-8/+28
* GH-131798: JIT: Split CALL_TYPE_1 into several uops (GH-132419)Tomas R.2025-04-225-36/+125