summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-93883: elide traceback indicators when possible (GH-93994) (GH-94740)John Belmonte2022-07-111-4/+14
* [3.11] GH-94694: Fix column offsets for multi-line method lookups (GH-94721)Brandt Bucher2022-07-091-2/+9
* [3.11] GH-93252: Fix error handling for failed Python calls (GH-94693) (GH-94...Kumar Aditya2022-07-091-1/+5
* [3.11] gh-94215: Fix error handling for line-tracing events (GH-94681) (GH-94...Christian Heimes2022-07-081-5/+14
* [3.11] gh-92228: disable the compiler's 'small exit block inlining' optimizat...Christian Heimes2022-07-071-0/+14
* [3.11] gh-94510: Raise on re-entrant calls to sys.setprofile and sys.settrace...Łukasz Langa2022-07-051-2/+24
* [3.11] gh-94485: Set line number of module's RESUME instruction to 0 as speci...Łukasz Langa2022-07-051-1/+4
* [3.11] GH-94262: Don't create frame objects for frames that aren't yet comple...Miss Islington (bot)2022-07-042-5/+17
* [3.11] GH-93354: Use exponential backoff to avoid excessive specialization at...Mark Shannon2022-06-302-45/+48
* gh-91719: Reload opcode on unknown error so that C can optimize the dispatchi...Miss Islington (bot)2022-06-301-0/+3
* GH-94329: Don't raise on excessive stack consumption (GH-94421) (GH-94446)Miss Islington (bot)2022-06-301-6/+1
* gh-94332: make it safe to call assemble_free when assemble_init has not been ...Irit Katriel2022-06-301-0/+1
* [3.11] GH-93516: Drop broken assert, fixes GH-93769 (GH-94411)Christian Heimes2022-06-291-4/+0
* [3.11] GH-93516: Backport GH-93769 (GH-94231)Mark Shannon2022-06-281-52/+41
* [3.11] GH-93516: Backport GH-93769: Speedup line number checks when tracing (...Mark Shannon2022-06-221-7/+9
* gh-94021: Address unreachable code warning in specialize code (GH-94022)Miss Islington (bot)2022-06-211-1/+2
* gh-91985: Ensure in-tree builds override platstdlib_dir in every path calcula...Miss Islington (bot)2022-06-201-1/+22
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938) (#94000)Victor Stinner2022-06-206-6/+4
* gh-74953: Fix PyThread_acquire_lock_timed() code recomputing the timeout (GH-...Miss Islington (bot)2022-06-171-1/+1
* [3.11] GH-93662: Make sure that column offsets are correct in multi-line meth...Irit Katriel2022-06-161-4/+16
* gh-90300: split --help output into separate options (GH-30331)Miss Islington (bot)2022-06-142-65/+123
* [3.11] gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)...Serhiy Storchaka2022-06-141-0/+31
* gh-92597: Improve error message for AST nodes with invalid ranges (GH-93398) ...Miss Islington (bot)2022-06-011-3/+3
* gh-92597: Ensure that AST nodes without explicit end positions can be compile...Miss Islington (bot)2022-05-311-12/+12
* gh-93351: Ensure the position information in AST nodes created by the parser ...Miss Islington (bot)2022-05-301-0/+26
* [3.11] bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185) (GH-9...Eric Snow2022-05-275-102/+0
* gh-93217: fix some issues in man page and --help (GH-93219)Miss Islington (bot)2022-05-261-5/+4
* gh-91924: Fix __lltrace__ for non-UTF-8 stdout encoding (GH-93199)Miss Islington (bot)2022-05-251-1/+3
* gh-93065: Fix HAMT to iterate correctly over 7-level deep trees (GH-93066) (G...Miss Islington (bot)2022-05-241-3/+11
* gh-93061: Mark as artificial: backwards jump after async for (GH-93062) (GH-9...Miss Islington (bot)2022-05-231-0/+2
* GH-92236: Remove spurious "line" event when starting coroutine or generator. ...Miss Islington (bot)2022-05-131-0/+6
* Update outdated `LOAD_METHOD` comments in `Python/ceval.c` (GH-92641)Miss Islington (bot)2022-05-121-2/+2
* gh-92619: Fix bug where the compiler duplicates exit blocks unnecessarily (GH...Miss Islington (bot)2022-05-101-1/+9
* gh-88279: Fix compiler warning for using deprecated PySys_SetArgvEx (GH-92428)Miss Islington (bot)2022-05-071-0/+3
* gh-92203: Add closure support to exec(). (#92204)larryhastings2022-05-062-19/+78
* gh-57684: Update tests for PYTHONSAFEPATH=1 (#92358)Victor Stinner2022-05-061-1/+1
* gh-57684: Add -P cmdline option and PYTHONSAFEPATH env var (#31542)Victor Stinner2022-05-064-3/+26
* GH-92239: Make sure that PEP 523 is supported, even when specializing first. ...Mark Shannon2022-05-042-0/+8
* Use static inline function Py_EnterRecursiveCall() (#91988)Victor Stinner2022-05-043-434/+436
* gh-78214: marshal: Stabilize FLAG_REF usage (GH-8226)Inada Naoki2022-05-041-2/+7
* Add more stats for freelist use and allocations. (GH-92211)Mark Shannon2022-05-032-0/+7
* GH-91173: disable frozen modules in debug builds (#92023)Kumar Aditya2022-05-031-20/+21
* gh-91320: Argument Clinic uses _PyCFunction_CAST() (#32210)Victor Stinner2022-05-036-39/+39
* suggestions.c: Improve efficiency of levenshtein_distance method (#91835)Pieter Eendebak2022-05-021-1/+3
* gh-92063: Enforce types in specialized PRECALL opcodes (GH-92068)Dennis Sweeney2022-04-301-16/+27
* gh-91869: Fix tracing of specialized instructions with extended args (GH-91945)Dennis Sweeney2022-04-273-20/+30
* gh-91719: Add pycore_opcode.h internal header file (#91906)Victor Stinner2022-04-263-6/+8
* gh-84461: Add sys._emscripten_info, improve docs and build (gh-91781)Christian Heimes2022-04-231-0/+118
* gh-89279: In ceval.c, redefine some macros for speed (#32387)Guido van Rossum2022-04-221-13/+60
* gh-91768: C API no longer use "const PyObject*" type (#91769)Victor Stinner2022-04-211-4/+6