summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-91625: Don't ignore extended args of adaptive opcodes (GH-91626)Dennis Sweeney2022-04-171-16/+21
* Fix refleaks in PyErr_SetHandledException (GH-91627)Dennis Sweeney2022-04-171-3/+2
* gh-78607: Replace __ltrace__ with __lltrace__ (GH-91619)Dennis Sweeney2022-04-161-1/+1
* gh-91462: Make lltrace output human-readable. (GH-91463)Dennis Sweeney2022-04-161-35/+83
* Fix an out of date comment in compile.c (GH-91615)Irit Katriel2022-04-161-1/+2
* gh-89770: Implement PEP-678 - Exception notes (GH-31317)Irit Katriel2022-04-161-24/+57
* gh-91276: Make JUMP_IF_TRUE_OR_POP/JUMP_IF_FALSE_OR_POP relative (GH-32215)Irit Katriel2022-04-152-4/+19
* gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531)Irit Katriel2022-04-151-8/+33
* gh-90699: Use _Py_STR(empty) instead of PyUnicode_New(0, 0) for BUILD_STRING ...Dennis Sweeney2022-04-151-6/+2
* gh-89455: Fix an uninitialized bool in exception print context. (#91466)Gregory P. Smith2022-04-141-0/+1
* Fill holes in internal compiler structs (#91458)L. A. F. Pereira2022-04-131-18/+18
* bpo-45995: add "z" format specifer to coerce negative 0 to zero (GH-30049)John Belmonte2022-04-113-2/+49
* bpo-47120: make POP_JUMP_IF_TRUE/FALSE/NONE/NOT_NONE relative (GH-32400)Irit Katriel2022-04-114-75/+225
* Fix some typos in comments (GH-32422)jonasdlindner2022-04-091-1/+1
* bpo-47000: Add `locale.getencoding()` (GH-32068)Inada Naoki2022-04-092-10/+16
* bpo-47260: Fix os.closerange() potentially being a no-op in a seccomp sandbox...Alexey Izbyshev2022-04-081-4/+5
* bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)Brandt Bucher2022-04-073-37/+47
* bpo-35134: Remove the Include/code.h header file (GH-32385)Victor Stinner2022-04-075-5/+0
* bpo-47009: Fix assert on big endian (GH-32332)Christian Heimes2022-04-051-1/+1
* bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)Irit Katriel2022-04-053-23/+32
* bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309)Irit Katriel2022-04-053-28/+32
* bpo-47009: Let PRECALL_NO_KW_LIST_APPEND do its own POP_TOP (GH-32239)Dennis Sweeney2022-04-052-5/+8
* bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)Inada Naoki2022-04-041-1/+4
* bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads (...Hood Chatham2022-04-032-0/+58
* bpo-47172: Compiler enhancements (GH-32200)Irit Katriel2022-04-011-36/+41
* bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231)Irit Katriel2022-04-013-15/+15
* bpo-47009: Streamline list.append for the common case (GH-31864)Dennis Sweeney2022-04-011-9/+4
* bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...Irit Katriel2022-03-314-85/+104
* bpo-47164: Add _PyCFunction_CAST() macro (GH-32192)Victor Stinner2022-03-316-36/+36
* bpo-47164: Add _PyASCIIObject_CAST() macro (GH-32191)Victor Stinner2022-03-311-6/+6
* bpo-47162: Add call trampoline to mitigate bad fpcasts on Emscripten (GH-32189)Christian Heimes2022-03-303-6/+20
* Merge deoptimization blocks in interpreter (GH-32155)Mark Shannon2022-03-302-36/+26
* bpo-46864: Suppress even more ob_shash deprecation warnings (GH-32176)Christian Heimes2022-03-301-0/+5
* bpo-47053: Refactor BINARY_OP_INPLACE_ADD_UNICODE (GH-32122)Dennis Sweeney2022-03-291-14/+18
* bpo-47127: Specialize calls for fastcall c methods with keywords (GH-32125)Kumar Aditya2022-03-273-11/+47
* bpo-43224: Implement PEP 646 grammar changes (GH-31018)Matthew Rahtz2022-03-262-14/+13
* bpo-47053: Reduce deoptimization in BINARY_OP_INPLACE_ADD_UNICODE (GH-31318)Dennis Sweeney2022-03-252-6/+9
* bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH...Mark Shannon2022-03-251-3/+7
* bpo-46841: remove no-longer-used macro UPDATE_PREV_INSTR_OPARG (GH-32100)Irit Katriel2022-03-241-2/+0
* bpo-46864: Suppress deprecation warnings for ob_shash. (GH-32042)Inada Naoki2022-03-231-1/+4
* bpo-43166: Disable ceval.c optimizations for Windows debug builds (GH-32023)neonene2022-03-231-4/+0
* bpo-47045: Remove `f_state` field (GH-31963)Mark Shannon2022-03-222-96/+104
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-215-150/+75
* bpo-46850: Remove _PyEval_CallTracing() function (GH-32019)Victor Stinner2022-03-211-4/+7
* bpo-46850: Remove _PyEval_GetCoroutineOriginTrackingDepth() (GH-32018)Victor Stinner2022-03-212-8/+11
* bpo-46850: Remove _PyEval_SetAsyncGenFinalizer() (GH-32017)Victor Stinner2022-03-211-1/+1
* bpo-45786: Remove _PyFrame_Fini() and _PyFrame_DebugMallocStats() (GH-31874)Victor Stinner2022-03-181-2/+0
* Use low bit of LOAD_GLOBAL's oparg to indicate whether it should push an addi...Mark Shannon2022-03-172-7/+26
* bpo-46841: Don't scan backwards in bytecode (GH-31901)Mark Shannon2022-03-161-13/+7
* bpo-45923: Decouple suspension of tracing from tracing flag. (GH-31908)Mark Shannon2022-03-152-33/+28