summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-103082: use IS_VALID_OPCODE instead of _PyOpcode_OpName to check if an opc...Irit Katriel2023-08-141-4/+4
* gh-106797: Remove warning logs from Python/generated_cases.c.h and executor_c...Dong-hee Na2023-08-122-4/+4
* GH-107674: Avoid allocating boxed ints for `sys.settrace` line events (GH-107...Mark Shannon2023-08-101-6/+38
* gh-106149: move CFG and basicblock definitions into flowgraph.c, use them as ...Irit Katriel2023-08-102-404/+465
* GH-107774: Add missing audit event for PEP 669 (GH-107775)Mark Shannon2023-08-101-0/+3
* GH-106485: Dematerialize instance dictionaries when possible (GH-106539)Brandt Bucher2023-08-094-19/+42
* GH-105848: Simplify the arrangement of CALL's stack (GH-107788)Brandt Bucher2023-08-096-626/+567
* GH-107724: Fix the signature of `PY_THROW` callback functions. (GH-107725)Mark Shannon2023-08-093-14/+4
* GH-107596: Specialize str[int] (GH-107597)Brandt Bucher2023-08-085-28/+94
* gh-107758: Improvements to lltrace feature (#107757)Guido van Rossum2023-08-083-8/+30
* gh-107630: Initialize Each Interpreter's refchain Properly (gh-107733)Eric Snow2023-08-072-0/+3
* gh-106608: make uop trace variable length (#107531)Ivin Lee2023-08-051-13/+4
* GH-84436: Skip refcounting for known immortals (GH-107605)Brandt Bucher2023-08-044-4/+4
* gh-106812: Refactor cases_generator to allow uops with array stack effects (#...Guido van Rossum2023-08-042-695/+1110
* Add some GC stats to Py_STATS (GH-107581)Mark Shannon2023-08-041-1/+17
* GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFra...Mark Shannon2023-08-047-15/+14
* gh-107080: Fix Py_TRACE_REFS Crashes Under Isolated Subinterpreters (gh-107567)Eric Snow2023-08-031-4/+4
* gh-107471: Fix Refleaks in test_import (gh-107569)Eric Snow2023-08-021-0/+1
* GH-100964: Break cycles involving exception state when returning from generat...Mark Shannon2023-08-021-0/+1
* gh-105481: combine regen-opcode-targets with regen-opcode to avoid calculatin...Irit Katriel2023-08-011-56/+0
* Use tstate->interp to get the interpreter state in bytecodes.c (GH-107506)Brandt Bucher2023-07-313-8/+8
* GH-104584: Fix incorrect uoperands (GH-107513)Brandt Bucher2023-07-311-1/+2
* GH-104909: Move unused cache entries from uops to macros (#107444)Guido van Rossum2023-07-313-21/+7
* no-issue: Fix typo in import.c (gh-107498)Georg Brandl2023-07-311-1/+1
* gh-105699: Use a _Py_hashtable_t for the PyModuleDef Cache (gh-106974)Eric Snow2023-07-282-171/+122
* gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-107359)Eric Snow2023-07-271-1/+1
* gh-104621: Check for Incompatible Extensions in import_find_extension() (gh-1...Eric Snow2023-07-271-10/+11
* gh-106931: Intern Statically Allocated Strings Globally (gh-107272)Eric Snow2023-07-271-0/+7
* GH-106898: Add the exception as an argument to the `PY_UNWIND` event callback...Mark Shannon2023-07-272-3/+23
* gh-107196: Remove _PyArg_VaParseTupleAndKeywordsFast() function (#107197)Victor Stinner2023-07-271-14/+0
* GH-106895: Raise a `ValueError` when attempting to disable events that cannot...Mark Shannon2023-07-275-50/+63
* GH-106897: Add `RERAISE` event to `sys.monitoring`. (GH-107291)Mark Shannon2023-07-274-3/+30
* gh-106149: fix comment on stackdepth of generators (#107321)Irit Katriel2023-07-261-2/+3
* gh-107015: Remove async_hacks from the tokenizer (#107018)Pablo Galindo Salgado2023-07-261-3/+0
* gh-106149: Simplify stack depth calculation. Replace asserts by exceptions. (...Irit Katriel2023-07-262-36/+72
* gh-107082: Fix instruction size computation for ENTER_EXECUTOR (#107256)Guido van Rossum2023-07-251-0/+7
* Remove unused internal _PyImport_GetModuleId() function (#107235)Victor Stinner2023-07-251-11/+0
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-258-68/+67
* gh-107211: Rename PySymtable_Lookup() to _PySymtable_Lookup() (#107212)Victor Stinner2023-07-252-3/+3
* gh-106149: move _PyCfg_BasicblockLastInstr and make it local to flowgraph.c (...Irit Katriel2023-07-241-23/+34
* gh-106917: fix super classmethod calls to non-classmethods (#106977)Carl Meyer2023-07-243-3/+3
* gh-106320: Remove private _PyDict C API (#107145)Victor Stinner2023-07-244-1/+5
* gh-106320: Remove private _PyObject C API (#107147)Victor Stinner2023-07-231-1/+1
* GH-103082: Rename PY_MONITORING_EVENTS to _PY_MONITORING_EVENTS (#107069)Victor Stinner2023-07-223-24/+24
* gh-106320: Move _PyMethodWrapper_Type to internal C API (#107064)Victor Stinner2023-07-221-2/+2
* gh-106320: Move private _PySet API to the internal API (#107041)Victor Stinner2023-07-227-10/+17
* gh-106320: Move private _PyHash API to the internal C API (#107026)Victor Stinner2023-07-222-0/+2
* gh-106916: Add missing error check _PyCompile_CleanDoc (#106921)Kirill Podoprigora2023-07-211-0/+6
* GH-106701: Move _PyUopExecute to Python/executor.c (GH-106924)Brandt Bucher2023-07-206-244/+249
* gh-105481: do not auto-generate pycore_intrinsics.h (#106913)Irit Katriel2023-07-204-25/+56