aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/compile.c
Commit message (Expand)AuthorAge
* gh-119180: Add evaluate functions for type params and type aliases (#122212)Jelle Zijlstra2024-07-27
* gh-122245: move checks for writes and shadowing of __debug__ to symtable (#12...Irit Katriel2024-07-26
* GH-122160: Remove BUILD_CONST_KEY_MAP opcode. (GH-122164)Mark Shannon2024-07-25
* gh-121404: extract compiler_lookup_arg out of compiler_make_closure (#122181)Irit Katriel2024-07-24
* gh-121637: Syntax error for optimized-away incorrect await (#121656)Jelle Zijlstra2024-07-22
* gh-121404: move calculation of module start location from compiler_body up to...Irit Katriel2024-07-22
* gh-121657: Display correct error message for yield from outside of a function...Gregor2024-07-13
* gh-121554: remove unnecessary internal functions in compile.c (#121555)Irit Katriel2024-07-10
* gh-121404: remove some accesses to compiler internals from codegen functions ...Irit Katriel2024-07-10
* gh-121547: deduplicate the code of const_cache update functions (#121548)Irit Katriel2024-07-10
* gh-121404: remove direct accesses to u_private from codegen functions (#121500)Irit Katriel2024-07-08
* gh-121272: move async for/with validation from compiler to symtable (#121361)Irit Katriel2024-07-04
* gh-121272: set ste_coroutine during symtable construction (#121297)Irit Katriel2024-07-03
* gh-121272: move __future__ import validation from compiler to symtable (#121273)Irit Katriel2024-07-02
* gh-121040: Use __attribute__((fallthrough)) (#121044)Victor Stinner2024-06-27
* Fixes loop variables to be the same types as their limit (GH-120958)Steve Dower2024-06-24
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-21
* gh-98442: fix locations of with statement's cleanup instructions (#120763)Irit Katriel2024-06-20
* gh-120733: rename internal compiler functions according to naming convention ...Irit Katriel2024-06-19
* gh-120722: Set position on RETURN_VALUE in lambda (#120724)Jelle Zijlstra2024-06-19
* GH-120507: Lower the `BEFORE_WITH` and `BEFORE_ASYNC_WITH` instructions. (#12...Mark Shannon2024-06-18
* gh-93691: fix too broad source locations of for statement iterators (#120330)Irit Katriel2024-06-12
* gh-119180: PEP 649 compiler changes (#119361)Jelle Zijlstra2024-06-11
* gh-93691: fix too broad source locations of with-statement instructions (#120...Irit Katriel2024-06-07
* gh-119744: move a few functions from compile.c to flowgraph.c (#119745)Irit Katriel2024-05-30
* gh-119689: generate stack effect metadata for pseudo instructions (#119691)Irit Katriel2024-05-29
* gh-119676: remove several pseudo instructions which are use only in codegen (...Irit Katriel2024-05-28
* gh-119311: Fix name mangling with PEP 695 generic classes (#119464)Jelle Zijlstra2024-05-27
* gh-119180: Add LOAD_COMMON_CONSTANT opcode (#119321)Jelle Zijlstra2024-05-22
* gh-118465: Add __firstlineno__ attribute to class (GH-118475)Serhiy Storchaka2024-05-06
* gh-118513: Fix sibling comprehensions with a name bound in one and global in ...Carl Meyer2024-05-03
* gh-116126: Implement PEP 696 (#116129)Jelle Zijlstra2024-05-03
* gh-118216: Don't consider dotted `__future__` imports (#118267)Crowthebird2024-05-02
* gh-116767: fix crash on 'async with' with many context managers (GH-118348)Irit Katriel2024-05-01
* gh-117901: Add option for compiler's codegen to save nested instruction seque...Irit Katriel2024-04-24
* gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)Irit Katriel2024-04-17
* gh-117494: extract the Instruction Sequence data structure into a separate fi...Irit Katriel2024-04-04
* gh-117411: move PyFutureFeatures to pycore_symtable.h and make it private (#1...Irit Katriel2024-04-02
* gh-117288: Allocate fewer label IDs in _PyCfg_ToInstructionSequence (#117290)Irit Katriel2024-03-27
* gh-115775: Compiler adds __static_attributes__ field to classes (#115913)Irit Katriel2024-03-26
* gh-115756: make PyCode_GetFirstFree an unstable API (GH-115781)Bogdan Romanyuk2024-03-19
* gh-111789: Use PyDict_GetItemRef() in Python/compile.c (GH-112083)Serhiy Storchaka2024-02-23
* gh-115376: fix segfault in _testinternalcapi.compiler_codegen on bad input (#...Irit Katriel2024-02-15
* gh-115347: avoid emitting redundant NOP for the docstring with -OO (#115494)Irit Katriel2024-02-15
* gh-112066: Use `PyDict_SetDefaultRef` in place of `PyDict_SetDefault`. (#112211)Sam Gross2024-02-07
* gh-114569: Use PyMem_* APIs for non-PyObjects in compiler (#114587)Erlend E. Aasland2024-01-30
* GH-112354: `END_FOR` instruction to only pop one value. (GH-114247)Mark Shannon2024-01-24
* gh-107901: synthetic jumps which are not at end of loop no longer check the e...Irit Katriel2024-01-06
* GH-111485: Generate instruction and uop metadata (GH-113287)Mark Shannon2023-12-20
* gh-99606: Make code generated for an empty f-string identical to that of a no...Irit Katriel2023-11-26