aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/symtable.c
Commit message (Expand)AuthorAge
* gh-130907: Treat all module-level annotations as conditional (#131550)Jelle Zijlstra45 hours
* gh-132479: Fix crash with multiple comprehensions in annotations (#132778)Jelle Zijlstra9 days
* gh-128632: fix segfault on nested __classdict__ type param (#128744)Tomasz Pytel2025-04-04
* gh-130924: Do not create cells for usages of names in local annotations (#131...Jelle Zijlstra2025-03-29
* gh-130881: Handle conditionally defined annotations (#130935)Jelle Zijlstra2025-03-26
* GH-131238: More refactoring of core header files (GH-131351)Mark Shannon2025-03-17
* gh-131238: Add explicit includes to pycore headers (#131257)Victor Stinner2025-03-17
* gh-111178: Fix function signatures in symtable.c (#130589)Victor Stinner2025-02-26
* GH-130396: Use computed stack limits on linux (GH-130398)Mark Shannon2025-02-25
* GH-91079: Revert "GH-91079: Implement C stack limits using addresses, not cou...Petr Viktorin2025-02-24
* GH-91079: Implement C stack limits using addresses, not counters. (GH-130007)Mark Shannon2025-02-19
* gh-127274: Defer nested methods (#128012)mpage2024-12-19
* gh-126072: Set docstring attribute for module and class (#126231)Xuanteng Huang2024-11-08
* gh-126072: do not add `None` to `co_consts` if there is no docstring (GH-126101)Xuanteng Huang2024-10-30
* gh-125196: Use PyUnicodeWriter in symtable.c (#125199)Victor Stinner2024-10-09
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125194)Victor Stinner2024-10-09
* gh-122985: add SYMBOL_TO_SCOPE macro in symtable (#122986)Irit Katriel2024-08-14
* gh-122562: fix dump_symtable for ste_free and ste_child_free removal (#122825)Irit Katriel2024-08-08
* gh-122595: Add more error checks in the compiler (GH-122596)Serhiy Storchaka2024-08-06
* gh-122313: Clean up deep recursion guarding code in the compiler (GH-122640)Serhiy Storchaka2024-08-03
* gh-122562: Remove ste_free and ste_child_free from symtable (#122563)Jelle Zijlstra2024-08-01
* 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-121637: Syntax error for optimized-away incorrect await (#121656)Jelle Zijlstra2024-07-22
* gh-121272: move async for/with validation from compiler to symtable (#121361)Irit Katriel2024-07-04
* gh-121352: use _Py_SourceLocation in symtable (#121353)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
* Fixes loop variables to be the same types as their limit (GH-120958)Steve Dower2024-06-24
* gh-119933: Improve ``SyntaxError`` message for invalid type parameters expres...Bénédikt Tran2024-06-17
* gh-120029: remove unused macros in ``symtable.c`` (#120222)Bénédikt Tran2024-06-12
* gh-120385: Fix reference leak in symtable (#120386)Kirill Podoprigora2024-06-12
* gh-119180: PEP 649 compiler changes (#119361)Jelle Zijlstra2024-06-11
* gh-119666: fix multiple class-scope comprehensions referencing __class__ (#12...Carl Meyer2024-06-09
* gh-119981: Use do while(0) in some symtable.c multi-line macros (#119982)Bénédikt Tran2024-06-03
* gh-119311: Fix name mangling with PEP 695 generic classes (#119464)Jelle Zijlstra2024-05-27
* gh-116126: Implement PEP 696 (#116129)Jelle Zijlstra2024-05-03
* gh-109118: Make comprehensions work within annotation scopes, but without inl...Jelle Zijlstra2024-04-28
* gh-109118: Allow lambdas in annotation scopes in classes (#118019)Jelle Zijlstra2024-04-22
* gh-117411: move PyFutureFeatures to pycore_symtable.h and make it private (#1...Irit Katriel2024-04-02
* gh-96497: Mangle name before symtable lookup in 'symtable_extend_namedexpr_sc...wookie1842024-02-17
* gh-114828: Fix __class__ in class-scope inlined comprehensions (#115139)Carl Meyer2024-02-07
* GH-113655: Lower the C recursion limit on various platforms (GH-113944)Mark Shannon2024-01-16
* gh-113842: Add missing error check for PyIter_Next() in Python/symtable.c (GH...Yan Yanchii2024-01-09
* gh-111789: Use PyDict_GetItemRef() in Python/symtable.c (gh-112084)Serhiy Storchaka2023-11-27
* gh-111123: symtable should visit exception handlers before the else block (#1...Irit Katriel2023-10-21
* gh-109390: add dump_symtable utility under #if 0 (#109391)Carl Meyer2023-09-20
* gh-109219: propagate free vars through type param scopes (#109377)Carl Meyer2023-09-14
* gh-109118: Disallow nested scopes within PEP 695 scopes within classes (#109196)Jelle Zijlstra2023-09-11
* gh-109207: Fix SystemError when printing symtable entry object. (GH-109225)云line2023-09-10