summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-91985: Ensure in-tree builds override platstdlib_dir in every path calcula...neonene2022-06-161-1/+22
* Fix BINARY_SUBSCR_GETITEM stats (GH-93903)Ken Jin2022-06-162-7/+7
* Rename 'LOAD_METHOD' specialization stat consts to 'ATTR'. (GH-93812)Mark Shannon2022-06-141-17/+14
* Remove LOAD_METHOD stats. (GH-93807)Mark Shannon2022-06-141-1/+0
* GH-93678: reduce boilerplate and code repetition in the compiler (GH-93682)Irit Katriel2022-06-141-261/+150
* GH-93429: Merge `LOAD_METHOD` back into `LOAD_ATTR` (GH-93430)Ken Jin2022-06-144-243/+194
* GH-93516: Store offset of first traceable instruction in code object (GH-93769)Mark Shannon2022-06-141-52/+37
* GH-93662: Make sure that column offsets are correct in multi-line method call...Mark Shannon2022-06-141-4/+16
* gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)Serhiy Storchaka2022-06-142-29/+45
* Add more FOR_ITER specialization stats (GH-32151)Dennis Sweeney2022-06-131-2/+26
* GH-93621: reorder code in with/async-with exception exit path to reduce the s...Irit Katriel2022-06-101-7/+13
* Fix MSVC compiler warnings in ceval.c (#93569)Ken Jin2022-06-071-2/+2
* Shrink the LOAD_METHOD cache by one codeunit. (#93537)Mark Shannon2022-06-072-13/+7
* GH-93444: remove redundant fields from basicblock: b_nofallthrough, b_exit, b...Irit Katriel2022-06-031-78/+74
* gh-93356: Lay out exception handling code at end of code unit (GH-92769)Irit Katriel2022-06-021-42/+220
* gh-92597: Improve error message for AST nodes with invalid ranges (GH-93398)Pablo Galindo Salgado2022-06-011-3/+3
* gh-90300: split --help output into separate options (#30331)Éric2022-06-012-65/+123
* gh-92597: Ensure that AST nodes without explicit end positions can be compile...Pablo Galindo Salgado2022-05-311-12/+12
* gh-93143: Avoid NULL check in LOAD_FAST based on analysis in the compiler (GH...Dennis Sweeney2022-05-313-24/+130
* GH-93354: Use exponential backoff to avoid excessive specialization attempts....Mark Shannon2022-05-312-43/+46
* gh-93351: Ensure the position information in AST nodes created by the parser ...Pablo Galindo Salgado2022-05-301-0/+26
* gh-93008: refactor compiler functions that add instructions to take only a ba...Irit Katriel2022-05-291-60/+61
* bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185)Eric Snow2022-05-275-102/+0
* GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...Mark Shannon2022-05-273-2/+9
* GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)Kumar Aditya2022-05-277-64/+0
* gh-93223: More aggressive Jump-To-Jump elimination (GH-93229)Dennis Sweeney2022-05-271-1/+1
* gh-93217: fix some issues in man page and --help (#93219)Éric2022-05-261-5/+4
* gh-92777: Add LOAD_METHOD_LAZY_DICT (GH-92778)Ken Jin2022-05-253-18/+50
* gh-91924: Fix __lltrace__ for non-UTF-8 stdout encoding (#93199)Victor Stinner2022-05-251-1/+3
* gh-93103: Py_DecodeLocale() uses _PyRuntime.preconfig (#93187)Victor Stinner2022-05-242-22/+14
* gh-93103: Parser uses PyConfig.parser_debug instead of Py_DebugFlag (#93106)Victor Stinner2022-05-241-1/+1
* gh-93065: Fix HAMT to iterate correctly over 7-level deep trees (GH-93066)Yury Selivanov2022-05-231-3/+11
* gh-93061: Mark as artificial: backwards jump after async for (GH-93062)Dennis Sweeney2022-05-231-0/+2
* GH-89914: Make the oparg of the YIELD_VALUE instruction equal the stack depth...Mark Shannon2022-05-193-9/+13
* GH-90690: Remove `PRECALL` instruction (GH-92925)Mark Shannon2022-05-194-309/+211
* Split refcount stats into 'interpreter' and 'non-interpreter' (GH-92919)Mark Shannon2022-05-183-0/+6
* bpo-42047: Add native thread ID for DragonFlyBSD (#22714)David CARLIER2022-05-181-0/+5
* gh-92782: unify the style of CFG traversal algorithms in the compiler (GH-92784)Irit Katriel2022-05-171-38/+45
* Improve object stats (#92845)Mark Shannon2022-05-162-0/+4
* gh-89653: Use int type for Unicode kind (#92704)Victor Stinner2022-05-131-2/+2
* GH-92236: Remove spurious "line" event when starting coroutine or generator. ...Mark Shannon2022-05-131-0/+6
* Update outdated `LOAD_METHOD` comments in `Python/ceval.c` (GH-92641)Crowthebird2022-05-121-2/+2
* gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)Inada Naoki2022-05-124-86/+3
* gh-92651: Remove the Include/token.h header file (#92652)Victor Stinner2022-05-111-1/+0
* gh-92632: Make function starunpack_helper run faster when encounters starred ...zikcheng2022-05-111-0/+1
* gh-92619: Fix bug where the compiler duplicates exit blocks unnecessarily (GH...Irit Katriel2022-05-101-1/+9
* gh-88750: On Windows, PyThread_acquire_lock() no longer checks for NULL (#92586)Victor Stinner2022-05-101-8/+12
* gh-88750: Remove the PYTHONTHREADDEBUG env var support. (#92509)Gregory P. Smith2022-05-094-84/+3
* gh-88279: Fix compiler warning for using deprecated PySys_SetArgvEx (#92428)Serhiy Storchaka2022-05-071-0/+3
* gh-92203: Add closure support to exec(). (#92204)larryhastings2022-05-062-19/+78