summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-64490: Fix bugs in argument clinic varargs processing (#32092)colorfulappl2022-11-241-1/+19
* gh-99708: fix bug where compiler crashes on if expression with an empty body ...Irit Katriel2022-11-241-3/+17
* gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)Victor Stinner2022-11-233-18/+9
* GH-98831: Add `macro` and `op` and their implementation to DSL (#99495)Guido van Rossum2022-11-232-62/+73
* gh-88226: Emit TARGET labels in Python/ceval.c when debugging, even if comput...Skip Montanaro2022-11-221-4/+21
* gh-99537: Use Py_SETREF() function in C code (#99657)Victor Stinner2022-11-228-25/+11
* gh-91053: Add an optional callback that is invoked whenever a function is mod...mpage2022-11-221-0/+5
* gh-99578: Fix refleak in _imp.create_builtin() (#99642)Victor Stinner2022-11-211-1/+2
* gh-99337: Fix compile errors with gcc 12 on macOS (#99470)Ronald Oussoren2022-11-211-3/+4
* GH-98831: Refactor and fix cases generator (#99526)Guido van Rossum2022-11-182-67/+61
* GH-99298: Clean up attribute specializations (GH-99398)Brandt Bucher2022-11-173-54/+33
* GH-98686: Get rid of BINARY_OP_GENERIC and COMPARE_OP_GENERIC (GH-99399)Brandt Bucher2022-11-174-115/+72
* Add a macro for "inlining" new frames (GH-99490)Brandt Bucher2022-11-173-86/+28
* gh-99377: Revert audit events for thread state creation and free, because the...Steve Dower2022-11-171-18/+1
* gh-81057: Move the global Dict-Related Versions to _PyRuntimeState (gh-99497)Eric Snow2022-11-161-1/+1
* gh-99300: Replace Py_INCREF() with Py_NewRef() (#99530)Victor Stinner2022-11-1610-39/+23
* gh-99377: Add audit events for thread creation and clear (GH-99378)Steve Dower2022-11-161-6/+25
* gh-81057: Move contextvars-related Globals to _PyRuntimeState (gh-99400)Eric Snow2022-11-162-78/+46
* gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)Eric Snow2022-11-168-23/+20
* GH-98831: Implement basic cache effects (#99313)Guido van Rossum2022-11-162-56/+48
* gh-99460 Emscripten trampolines on optimized METH_O and METH_NOARGS code path...Hood Chatham2022-11-152-6/+6
* gh-81057: Move Globals in Core Code to _PyRuntimeState (gh-99496)Eric Snow2022-11-154-30/+35
* gh-99300: Use Py_NewRef() in Python/Python-ast.c (#99499)Victor Stinner2022-11-151-140/+73
* GH-99205: remove `_static` field from `PyThreadState` and `PyInterpreterState...Kumar Aditya2022-11-151-10/+6
* gh-81057: Move the Remaining Import State Globals to _PyRuntimeState (gh-99488)Eric Snow2022-11-141-6/+9
* gh-87604: Avoid publishing list of active per-interpreter audit hooks via the...Steve Dower2022-11-141-0/+2
* gh-81057: Move Global Variables Holding Objects to _PyRuntimeState. (gh-99487)Eric Snow2022-11-142-1/+5
* gh-87092: expose the compiler's codegen to python for unit tests (GH-99111)Irit Katriel2022-11-141-53/+120
* gh-99103: Normalize specialized traceback anchors against the current line (G...Batuhan Taskaya2022-11-121-2/+7
* gh-98762: Fix locations of match sub-patterns (GH-98775)Irit Katriel2022-11-121-129/+116
* gh-81057: Move PyImport_Inittab to _PyRuntimeState (gh-99402)Eric Snow2022-11-123-6/+68
* gh-81057: Move the Allocators to _PyRuntimeState (gh-99217)Eric Snow2022-11-112-3/+6
* gh-81057: Add PyInterpreterState.static_objects (gh-99397)Eric Snow2022-11-111-1/+1
* gh-81057: Move the Extension Modules Cache to _PyRuntimeState (gh-99355)Eric Snow2022-11-111-28/+50
* gh-99254: remove all unused consts from code objects (GH-99255)Irit Katriel2022-11-111-19/+92
* GH-98831: Remove all remaining DISPATCH() calls from bytecodes.c (#99271)Guido van Rossum2022-11-102-169/+175
* GH-99298: Don't perform jumps before error handling (GH-99299)Brandt Bucher2022-11-102-30/+38
* GH-96421: Insert shim frame on entry to interpreter (GH-96319)Mark Shannon2022-11-109-219/+217
* GH-99257: Check the owner's type when specializing slots (GH-99258)Brandt Bucher2022-11-101-0/+8
* gh-99300: Use Py_NewRef() in Python/ceval.c (#99318)Victor Stinner2022-11-103-128/+68
* gh-99300: Use Py_NewRef() in Python/ directory (#99317)Victor Stinner2022-11-109-319/+162
* gh-99300: Use Py_NewRef() in Python/ directory (#99302)Victor Stinner2022-11-1014-80/+41
* GH-99205: Mark new interpreters and threads as non-static (GH-99268)Brandt Bucher2022-11-091-0/+8
* GH-98686: Get rid of "adaptive" and "quick" instructions (GH-99182)Brandt Bucher2022-11-097-596/+397
* gh-90868: Adjust the Generated Objects (gh-99223)Eric Snow2022-11-082-1/+3
* GH-98831: Simple input-output stack effects for bytecodes.c (#99120)Guido van Rossum2022-11-083-350/+271
* gh-72719: Remove asyncore and asynchat modules (#96580)Nikita Sobolev2022-11-081-2/+0
* GH-96793: Specialize FOR_ITER for generators. (GH-98772)Mark Shannon2022-11-075-23/+132
* GH-98831: Implement super-instruction generation (#99084)Guido van Rossum2022-11-062-123/+88
* gh-99139: Improve NameError error suggestion for instances (#99140)Pablo Galindo Salgado2022-11-061-0/+23