summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-106320: Remove private AC converter functions (#108505)Victor Stinner2023-08-262-1/+3
* GH-106581: Fix instrumentation in tier 2 (GH-108493)Brandt Bucher2023-08-253-12/+18
* gh-107265: Revert "Ensure _PyCode_Quicken does not handle ENTER_EXECUTOR" (#1...Dong-hee Na2023-08-251-2/+0
* gh-108444: Remove _PyLong_AsInt() function (#108461)Victor Stinner2023-08-251-1/+1
* gh-106581: Split CALL_BOUND_METHOD_EXACT_ARGS into uops (#108462)Guido van Rossum2023-08-254-20/+143
* gh-106320: Remove private _PyTraceback functions (#108453)Victor Stinner2023-08-241-3/+2
* gh-107265: Ensure _PyCode_Quicken does not handle ENTER_EXECUTOR (gh-108460)Dong-hee Na2023-08-241-0/+2
* gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459)Victor Stinner2023-08-245-10/+10
* gh-108444: Argument Clinic uses PyLong_AsInt() (#108458)Victor Stinner2023-08-247-37/+37
* gh-106320: Remove private _PySys functions (#108452)Victor Stinner2023-08-245-1/+7
* gh-106320: Remove private _PyDict functions (#108449)Victor Stinner2023-08-241-0/+1
* gh-106581: Fix two bugs in the code generator's copy optimization (#108380)Guido van Rossum2023-08-241-3/+0
* gh-106320: Remove private PyLong C API functions (#108429)Victor Stinner2023-08-241-2/+3
* gh-108308: Remove _PyDict_GetItemStringWithError() function (#108426)Victor Stinner2023-08-243-30/+36
* gh-108314: Add PyDict_ContainsString() function (#108323)Victor Stinner2023-08-242-13/+19
* gh-108308: config_dict_get() uses PyDict_GetItemRef() (#108371)Victor Stinner2023-08-231-6/+19
* gh-108308: Replace _PyDict_GetItemStringWithError() (#108372)Victor Stinner2023-08-233-24/+22
* gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. (#...Irit Katriel2023-08-238-9/+13
* gh-107265: Ensure de_instrument does not handle ENTER_EXECUTOR (#108366)Dong-hee Na2023-08-231-0/+1
* gh-108308: Replace PyDict_GetItem() with PyDict_GetItemRef() (#108309)Victor Stinner2023-08-234-32/+105
* gh-108113: Make it possible to optimize an AST (#108282)Irit Katriel2023-08-233-32/+47
* gh-106320: Remove _PyDict_GetItemStringWithError() function (#108313)Victor Stinner2023-08-224-1/+5
* Ignore _Py_write_noraise() result: cast to (void) (#108291)Victor Stinner2023-08-223-7/+7
* gh-107901: Fix missing line number on BACKWARD_JUMP at the end of a for loop ...Irit Katriel2023-08-211-1/+1
* gh-108113: Make it possible to create an optimized AST (#108154)Irit Katriel2023-08-212-0/+28
* gh-107916: Save the error code before decoding the filename in PyErr_SetFromE...Serhiy Storchaka2023-08-211-0/+8
* gh-107526: Revert "gh-100357: Convert several functions in bltinsmodule to AC...Nikita Sobolev2023-08-212-303/+99
* gh-107915: Handle errors in C API functions PyErr_Set*() and PyErr_Format() (...Serhiy Storchaka2023-08-191-8/+29
* gh-108014: Add Py_IsFinalizing() function (#108032)Victor Stinner2023-08-182-2/+2
* gh-107944: Improve error message for function calls with bad keyword argument...Pablo Galindo Salgado2023-08-172-10/+35
* gh-106581: Project through calls (#108067)Guido van Rossum2023-08-177-64/+264
* GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...Mark Shannon2023-08-1713-67/+51
* gh-106581: Split `CALL_PY_EXACT_ARGS` into uops (#107760)Guido van Rossum2023-08-168-58/+273
* gh-105481: generate op IDs from bytecode.c instead of hard coding them in opc...Irit Katriel2023-08-162-168/+166
* gh-105724: Add location information to `assert` errors (GH-105935)Nikita Sobolev2023-08-161-1/+1
* gh-107557: Setup abstract interpretation (#107847)Ken Jin2023-08-155-4/+814
* gh-106242: Minor fixup to avoid compiler warnings (GH-107983)Steve Dower2023-08-151-1/+1
* gh-103082: remove assumption that INSTRUMENTED_LINE is the last instrumented ...Irit Katriel2023-08-151-2/+2
* gh-106242: Fix path truncation in os.path.normpath (GH-106816)Finn Womack2023-08-151-8/+21
* 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