summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* gh-108444: Remove _PyLong_AsInt() function (#108461)Victor Stinner2023-08-251-3/+0
* gh-106581: Split CALL_BOUND_METHOD_EXACT_ARGS into uops (#108462)Guido van Rossum2023-08-251-14/+27
* gh-106320: Remove private _PyTraceback functions (#108453)Victor Stinner2023-08-242-3/+6
* gh-108444: Add PyLong_AsInt() public function (#108445)Victor Stinner2023-08-242-1/+8
* gh-106320: Remove private _PySys functions (#108452)Victor Stinner2023-08-243-6/+7
* gh-106320: Remove private _PyDict functions (#108449)Victor Stinner2023-08-242-32/+44
* gh-106320: Remove private _PyList functions (#108451)Victor Stinner2023-08-242-4/+3
* gh-106320: Remove private _PyEval function (#108433)Victor Stinner2023-08-242-10/+17
* gh-107211: Fix test_peg_generator (#108435)Victor Stinner2023-08-241-45/+47
* gh-106320: Remove private _PyContext_NewHamtForTests() (#108434)Victor Stinner2023-08-242-4/+5
* gh-106320: Remove private float C API functions (#108430)Victor Stinner2023-08-242-9/+7
* gh-106320: Remove private _PyManagedBuffer_Type (#108431)Victor Stinner2023-08-242-2/+2
* gh-106320: Remove private PyLong C API functions (#108429)Victor Stinner2023-08-242-72/+82
* gh-107211: No longer export internal functions (5) (#108423)Victor Stinner2023-08-2410-39/+73
* gh-107211: No longer export internal functions (7) (#108425)Victor Stinner2023-08-248-42/+65
* gh-108308: Remove _PyDict_GetItemStringWithError() function (#108426)Victor Stinner2023-08-241-1/+0
* gh-107211: No longer export internal functions (6) (#108424)Victor Stinner2023-08-248-43/+45
* gh-107211: No longer export PyTime internal functions (#108422)Victor Stinner2023-08-241-118/+146
* gh-108314: Add PyDict_ContainsString() function (#108323)Victor Stinner2023-08-241-0/+1
* gh-108240: Add _PyCapsule_SetTraverse() internal function (#108339)Victor Stinner2023-08-231-0/+4
* gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. (#...Irit Katriel2023-08-233-42/+21
* gh-108113: Make it possible to optimize an AST (#108282)Irit Katriel2023-08-231-0/+8
* gh-106320: Remove _PyDict_GetItemStringWithError() function (#108313)Victor Stinner2023-08-222-1/+1
* Define _Py_NULL as nullptr on C23 and newer (#108244)Victor Stinner2023-08-221-3/+4
* gh-107211: No longer export pycore_strhex.h functions (#108229)Victor Stinner2023-08-211-2/+5
* gh-108216: Cleanup #include in internal header files (#108228)Victor Stinner2023-08-2127-69/+68
* gh-108220: Internal header files require Py_BUILD_CORE to be defined (#108221)Victor Stinner2023-08-2111-4/+42
* gh-108113: Make it possible to create an optimized AST (#108154)Irit Katriel2023-08-211-1/+2
* 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