summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* gh-132775: Support Fallbacks in _PyObject_GetXIData() (gh-133482)Eric Snow2025-05-212-47/+104
* gh-131185: Use a proper thread-local for cached thread states (gh-132510)Peter Bierma2025-05-211-156/+43
* GH-131798: Narrow types more aggressively in the JIT (GH-134373)Brandt Bucher2025-05-206-50/+117
* GH-131798: Narrow the return type of _GET_LEN to int (GH-133345)Nadeshiko Manju2025-05-202-1/+41
* gh-106213: Shorten Emscripten wasm-gc trampoline by a little (#133984)Hood Chatham2025-05-201-37/+21
* GH-134282: Always borrow references LOAD_CONST (GH-134284)Mark Shannon2025-05-206-226/+27
* GH-131798: Add _POP_CALL_TWO_LOAD_CONST_INLINE_BORROW (GH-134268)Tomas R.2025-05-194-8/+65
* GH-131798: Split CALL_LIST_APPEND into several uops (GH-134240)Diego Russo2025-05-195-63/+148
* Revert "gh-128639: Don't assume one thread in subinterpreter finalization (gh...Peter Bierma2025-05-191-28/+28
* Simplify interp_look_up_id() (#134257)Victor Stinner2025-05-191-4/+2
* GH-131798: Narrow the return type of isinstance for some known arguments in t...Tomas R.2025-05-192-1/+35
* gh-128639: Don't assume one thread in subinterpreter finalization (gh-128640)Peter Bierma2025-05-191-28/+28
* gh-134144: Fix use-after-free in zapthreads() (#134145)b-pass2025-05-181-2/+7
* gh-134100: Fix use-after-free in `PyImport_ImportModuleLevelObject` (#134117)Nico-Posada2025-05-181-1/+3
* gh-134064: Fix sys.remote_exec() error checking (#134067)Victor Stinner2025-05-171-1/+1
* Fix GetNamedPipeHandleStateW on non-desktop Windows API partitions (GH-134049)Max Bachmann2025-05-151-0/+37
* gh-133580: Add missing exception to _sys_getwindowsversion_from_kernel32 (GH-...Max Bachmann2025-05-141-0/+1
* gh-133886: Fix sys.remote_exec() for non-UTF-8 paths (GH-133887)Serhiy Storchaka2025-05-132-63/+68
* gh-132775: Add _PyFunction_GetXIData() (gh-133481)Eric Snow2025-05-122-0/+57
* gh-133590: ensure that `TableEntry.linenumber_borrow` is initialized (#133681)Lauta2025-05-111-1/+1
* gh-133336: Remove comment about reserved -J in ``initconfig.c`` (#133821)Bénédikt Tran2025-05-101-2/+0
* gh-133783: Fix __replace__ on AST nodes for optional attributes (#133797)Jelle Zijlstra2025-05-101-0/+26
* gh-133379: Fix misuse of the term "arguments" in error messages (GH-133382)Stan Ulbrych2025-05-101-3/+3
* gh-133644: Remove deprecated Python initialization getter functions (#133661)Bénédikt Tran2025-05-091-7/+13
* gh-133581: Fix refleak in t-string AST unparsing (#133724)Jelle Zijlstra2025-05-091-0/+1
* GH-131798: Split up and optimize CALL_ISINSTANCE (GH-133339)Tomas R.2025-05-086-101/+163
* gh-133273: Keep instruction definitions in `bytecodes.c` and `optimizer_bytec...Tomas R.2025-05-082-131/+150
* gh-132775: Add _PyCode_GetScriptXIData() (gh-133480)Eric Snow2025-05-082-0/+147
* gh-131942: Use the Python-specific `Py_DEBUG` macro rather than `_DEBUG` in W...Xuehai Pan2025-05-083-5/+5
* gh-133581: Improve AST unparsing of t-strings (#133635)Jelle Zijlstra2025-05-081-13/+25
* gh-133644: remove deprecated `PyImport_ImportModuleNoBlock` (#133655)Bénédikt Tran2025-05-081-1/+3
* gh-133597: Fix memory leak if error occurred in _sys_getwindowsversion_from_k...Sergey Miryanov2025-05-081-0/+3
* gh-132917: Use /proc/self/status for mem usage info. (#133544)Neil Schemenauer2025-05-081-6/+5
* gh-132917: Fix data race detected by tsan (#133508)T. Wouters2025-05-061-3/+2
* Revert "gh-133395: add option for extension modules to specialize BINARY_OP/S...Irit Katriel2025-05-065-73/+34
* gh-102567: Add -X importtime=2 for logging an importtime message for already-...Noah Kim2025-05-062-15/+71
* gh-132775: Add _PyCode_GetXIData() (gh-133475)Eric Snow2025-05-051-0/+24
* gh-132775: Do Not Set __name__ to __main__ With _PyPickle_GetXIData() (gh-133...Eric Snow2025-05-051-1/+4
* GH-133231: Add JIT utilities in sys._jit (GH-133233)Brandt Bucher2025-05-052-1/+160
* GH-131798: Split CALL_LEN into several uops (GH-133180)Diego Russo2025-05-056-83/+108
* gh-132917: Use RSS + swap for estimate of process memory usage (gh-133464)Neil Schemenauer2025-05-051-49/+58
* gh-132917: Check resident set size (RSS) before GC trigger. (gh-133399)Neil Schemenauer2025-05-051-5/+212
* gh-133395: add option for extension modules to specialize BINARY_OP/SUBSCR, a...Irit Katriel2025-05-055-34/+73
* GH-133336: Remove reserved ``-J`` flag for Jython (#133444)Adam Turner2025-05-051-8/+1
* GH-133261: Make sure that the GC doesn't untrack objects in trashcan (GH-133431)Mark Shannon2025-05-051-0/+1
* gh-133371: Don't optimize `LOAD_FAST` instructions whose local is killed by `...mpage2025-05-051-0/+5
* GH-91048: Minor fixes for ``_remotedebugging`` & rename to ``_remote_debuggin...Adam Turner2025-05-051-0/+1
* gh-131421: fix ASDL grammar for `Dict` to have an `expr?*` keys field (#131419)Samuel2025-05-041-2/+2
* gh-126835: Rename `ast_opt.c` to `ast_preprocess.c` and related stuff after m...Yan Yanchii2025-05-044-45/+45
* GH-133231: Changes to executor management to support proposed `sys._jit` modu...Mark Shannon2025-05-047-49/+159