summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* gh-95065, gh-107704: Argument Clinic: support multiple '/ [from ...]' and '* ...Serhiy Storchaka2023-08-214-0/+18
* gh-108014: Add Py_IsFinalizing() function (#108032)Victor Stinner2023-08-182-1/+2
* gh-107944: Improve error message for function calls with bad keyword argument...Pablo Galindo Salgado2023-08-171-1/+1
* gh-106581: Project through calls (#108067)Guido van Rossum2023-08-173-39/+58
* gh-105481: opcode.h is no longer generated during the build (#108080)Irit Katriel2023-08-171-2/+1
* GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...Mark Shannon2023-08-174-30/+5
* gh-106581: Split `CALL_PY_EXACT_ARGS` into uops (#107760)Guido van Rossum2023-08-161-4/+43
* gh-105481: generate op IDs from bytecode.c instead of hard coding them in opc...Irit Katriel2023-08-163-757/+709
* gh-107211: Fix select extension build on Solaris (#108012)Victor Stinner2023-08-161-2/+4
* gh-107955 Remove old comment about increasing the reference count in usage of...brandonardenwalli2023-08-161-2/+0
* gh-107557: Setup abstract interpretation (#107847)Ken Jin2023-08-154-2/+164
* gh-106242: Fix path truncation in os.path.normpath (GH-106816)Finn Womack2023-08-151-0/+1
* gh-105481: reduce repetition in opcode metadata generation code (#107942)Irit Katriel2023-08-141-14/+15
* gh-91051: fix segfault when using all 8 type watchers (#107853)Carl Meyer2023-08-111-1/+1
* gh-105481: split opcode_ids.h out of opcode.h so that it can be generated sep...Irit Katriel2023-08-112-220/+236
* gh-84805: Autogenerate signature for METH_NOARGS and METH_O extension functio...Serhiy Storchaka2023-08-111-1/+1
* GH-106485: Handle dict subclasses correctly when dematerializing `__dict__` (...Mark Shannon2023-08-104-1/+4
* gh-106149: move CFG and basicblock definitions into flowgraph.c, use them as ...Irit Katriel2023-08-102-74/+17
* GH-106485: Dematerialize instance dictionaries when possible (GH-106539)Brandt Bucher2023-08-092-0/+5
* GH-105848: Simplify the arrangement of CALL's stack (GH-107788)Brandt Bucher2023-08-091-9/+9
* GH-107724: Fix the signature of `PY_THROW` callback functions. (GH-107725)Mark Shannon2023-08-091-4/+0
* GH-107596: Specialize str[int] (GH-107597)Brandt Bucher2023-08-083-69/+76
* gh-107630: Initialize Each Interpreter's refchain Properly (gh-107733)Eric Snow2023-08-071-0/+1
* gh-106608: make uop trace variable length (#107531)Ivin Lee2023-08-052-2/+2
* GH-84436: Skip refcounting for known immortals (GH-107605)Brandt Bucher2023-08-041-3/+3
* gh-106812: Refactor cases_generator to allow uops with array stack effects (#...Guido van Rossum2023-08-041-4/+15
* Add some GC stats to Py_STATS (GH-107581)Mark Shannon2023-08-042-0/+11
* GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFra...Mark Shannon2023-08-041-1/+2
* gh-107080: Fix Py_TRACE_REFS Crashes Under Isolated Subinterpreters (gh-107567)Eric Snow2023-08-033-6/+22
* gh-105481: simplify definition of pseudo ops in Lib/opcode.py (#107561)Irit Katriel2023-08-021-2/+0
* gh-105481: the ENABLE_SPECIALIZATION flag does not need to be generated by th...Irit Katriel2023-08-012-2/+2
* GH-104909: Move unused cache entries from uops to macros (#107444)Guido van Rossum2023-07-311-26/+24
* gh-105699: Use a _Py_hashtable_t for the PyModuleDef Cache (gh-106974)Eric Snow2023-07-283-17/+4
* GH-104580: Put `eval_breaker` back at the start of the interpreter state. (GH...Mark Shannon2023-07-282-3/+8
* gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-107359)Eric Snow2023-07-276-31/+33
* gh-106931: Intern Statically Allocated Strings Globally (gh-107272)Eric Snow2023-07-275-1/+12
* gh-107196: Remove _PyArg_VaParseTupleAndKeywordsFast() function (#107197)Victor Stinner2023-07-271-2/+0
* GH-106895: Raise a `ValueError` when attempting to disable events that cannot...Mark Shannon2023-07-271-1/+2
* gh-105481: remove dependency of _inline_cache_entries on opname (#107339)Irit Katriel2023-07-271-9/+9
* GH-106897: Add `RERAISE` event to `sys.monitoring`. (GH-107291)Mark Shannon2023-07-272-4/+5
* gh-107015: Remove async_hacks from the tokenizer (#107018)Pablo Galindo Salgado2023-07-261-12/+10
* gh-106149: Simplify stack depth calculation. Replace asserts by exceptions. (...Irit Katriel2023-07-261-2/+2
* gh-107226: PyModule_AddObjectRef() should only be in the limited API 3.10 (GH...Serhiy Storchaka2023-07-251-0/+2
* gh-106004: PyDict_GetItemRef() should only be in the limited API 3.13 (GH-107...Serhiy Storchaka2023-07-251-0/+2
* gh-107249: Implement Py_UNUSED() for MSVC (#107250)Victor Stinner2023-07-251-0/+9
* Remove unused internal _PyImport_GetModuleId() function (#107235)Victor Stinner2023-07-251-1/+0
* gh-105059: Fix MSCV compiler warning on PyObject union (#107239)Victor Stinner2023-07-251-0/+11
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-2/+2
* gh-105059: Use GCC/clang extension for PyObject union (#107232)Victor Stinner2023-07-251-0/+5
* gh-107211: No longer export internal variables (#107218)Victor Stinner2023-07-256-20/+26