summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-120722: Set position on RETURN_VALUE in lambda (GH-120724) (#120738)Miss Islington (bot)2024-06-191-1/+1
* [3.13] gh-93691: fix too broad source locations of for statement iterators (G...Miss Islington (bot)2024-06-121-0/+7
* [3.13] gh-119311: Fix name mangling with PEP 695 generic classes (#119464) (#...Jelle Zijlstra2024-05-281-6/+6
* gh-118465: Add __firstlineno__ attribute to class (GH-118475)Serhiy Storchaka2024-05-061-0/+5
* gh-118513: Fix sibling comprehensions with a name bound in one and global in ...Carl Meyer2024-05-031-39/+42
* gh-116126: Implement PEP 696 (#116129)Jelle Zijlstra2024-05-031-14/+75
* gh-118216: Don't consider dotted `__future__` imports (#118267)Crowthebird2024-05-021-1/+1
* gh-116767: fix crash on 'async with' with many context managers (GH-118348)Irit Katriel2024-05-011-2/+16
* gh-117901: Add option for compiler's codegen to save nested instruction seque...Irit Katriel2024-04-241-0/+18
* gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)Irit Katriel2024-04-171-164/+34
* gh-117494: extract the Instruction Sequence data structure into a separate fi...Irit Katriel2024-04-041-166/+31
* gh-117411: move PyFutureFeatures to pycore_symtable.h and make it private (#1...Irit Katriel2024-04-021-4/+4
* gh-117288: Allocate fewer label IDs in _PyCfg_ToInstructionSequence (#117290)Irit Katriel2024-03-271-4/+30
* gh-115775: Compiler adds __static_attributes__ field to classes (#115913)Irit Katriel2024-03-261-1/+53
* gh-115756: make PyCode_GetFirstFree an unstable API (GH-115781)Bogdan Romanyuk2024-03-191-1/+1
* gh-111789: Use PyDict_GetItemRef() in Python/compile.c (GH-112083)Serhiy Storchaka2024-02-231-5/+4
* gh-115376: fix segfault in _testinternalcapi.compiler_codegen on bad input (#...Irit Katriel2024-02-151-14/+28
* gh-115347: avoid emitting redundant NOP for the docstring with -OO (#115494)Irit Katriel2024-02-151-18/+20
* gh-112066: Use `PyDict_SetDefaultRef` in place of `PyDict_SetDefault`. (#112211)Sam Gross2024-02-071-12/+17
* gh-114569: Use PyMem_* APIs for non-PyObjects in compiler (#114587)Erlend E. Aasland2024-01-291-13/+12
* GH-112354: `END_FOR` instruction to only pop one value. (GH-114247)Mark Shannon2024-01-241-0/+10
* gh-107901: synthetic jumps which are not at end of loop no longer check the e...Irit Katriel2024-01-061-20/+20
* GH-111485: Generate instruction and uop metadata (GH-113287)Mark Shannon2023-12-201-30/+7
* gh-99606: Make code generated for an empty f-string identical to that of a no...Irit Katriel2023-11-261-2/+6
* gh-107149: make new opcode util functions private rather than public and unst...Irit Katriel2023-11-141-8/+8
* gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...Irit Katriel2023-11-031-2/+2
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...Irit Katriel2023-11-021-2/+2
* gh-108082: Use PyErr_FormatUnraisable() (GH-111580)Serhiy Storchaka2023-11-021-3/+2
* gh-111354: define names for RESUME oparg values (#111365)Irit Katriel2023-10-261-3/+3
* gh-105658: fix excess trace events for except block ending with a conditional...Irit Katriel2023-09-141-14/+2
* GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)Brandt Bucher2023-09-131-10/+12
* gh-109195: fix source location for super load before LOAD_SUPER_ATTR (#109289)Carl Meyer2023-09-111-1/+1
* gh-106320: Remove private _PyErr_WriteUnraisableMsg() (#108863)Victor Stinner2023-09-041-0/+1
* gh-108654: restore comprehension locals before handling exception (#108659)Carl Meyer2023-08-301-14/+53
* gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. (#...Irit Katriel2023-08-231-0/+1
* gh-108308: Replace PyDict_GetItem() with PyDict_GetItemRef() (#108309)Victor Stinner2023-08-231-7/+27
* gh-108113: Make it possible to optimize an AST (#108282)Irit Katriel2023-08-231-0/+18
* gh-105724: Add location information to `assert` errors (GH-105935)Nikita Sobolev2023-08-161-1/+1
* gh-106149: move CFG and basicblock definitions into flowgraph.c, use them as ...Irit Katriel2023-08-101-364/+68
* GH-105848: Simplify the arrangement of CALL's stack (GH-107788)Brandt Bucher2023-08-091-10/+9
* gh-106149: fix comment on stackdepth of generators (#107321)Irit Katriel2023-07-261-2/+3
* gh-106149: Simplify stack depth calculation. Replace asserts by exceptions. (...Irit Katriel2023-07-261-16/+31
* gh-107211: Rename PySymtable_Lookup() to _PySymtable_Lookup() (#107212)Victor Stinner2023-07-251-2/+2
* gh-106320: Move private _PySet API to the internal API (#107041)Victor Stinner2023-07-221-1/+2
* gh-106916: Add missing error check _PyCompile_CleanDoc (#106921)Kirill Podoprigora2023-07-211-0/+6
* gh-105481: Generate the opcode lists in dis from data extracted from bytecode...Irit Katriel2023-07-181-0/+18
* gh-106843: fix memleak in _PyCompile_CleanDoc (#106846)Inada Naoki2023-07-181-1/+4
* gh-81283: compiler: remove indent from docstring (#106411)Inada Naoki2023-07-151-1/+98
* gh-105481: expose opcode metadata via the _opcode module (#106688)Irit Katriel2023-07-141-0/+32
* gh-105481: move Python/opcode_metadata.h to Include/internal/pycore_opcode_me...Irit Katriel2023-07-121-1/+1