aboutsummaryrefslogtreecommitdiff
path: root/Python/symtable.c
AgeCommit message (Expand)Author
2022-02-22bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...Eric Snow
2022-01-23bpo-46417: Clear symtable identifiers at exit (GH-30809)Victor Stinner
2021-12-14bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel
2021-12-11bpo-46042: Improve SyntaxError locations in the symbol table (GH-30059)Pablo Galindo Salgado
2021-11-16bpo-45753: Make recursion checks more efficient. (GH-29524)Mark Shannon
2021-07-13bpo-33346: Allow async comprehensions inside implicit async comprehensions (G...Serhiy Storchaka
2021-06-30bpo-44313: generate LOAD_ATTR/CALL_FUNCTION for top-level imported objects (G...Batuhan Taskaya
2021-05-03bpo-42725: Render annotations effectless on symbol table with PEP 563 (GH-25583)Batuhan Taskaya
2021-04-28bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan
2021-04-23bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo
2021-04-07bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)Victor Stinner
2021-03-24bpo-43244: Remove the pyarena.h header (GH-25007)Victor Stinner
2021-03-24bpo-43244: Remove parser_interface.h header file (GH-25001)Victor Stinner
2021-03-24bpo-43244: Add pycore_compile.h header file (GH-25000)Victor Stinner
2021-03-23bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)Victor Stinner
2021-03-19bpo-43244: Remove symtable.h header file (GH-24910)Victor Stinner
2021-02-26bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher
2020-12-01bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner
2020-10-26bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetIte...Serhiy Storchaka
2020-09-16bpo-41746: Add type information to asdl_seq objects (GH-22223)Pablo Galindo
2020-04-15bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner
2020-04-14bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)Victor Stinner
2020-03-10bpo-34822: Simplify AST for subscription. (GH-9605)Serhiy Storchaka
2020-03-06closes bpo-39872: Remove unused args from symtable_exit_block and symtable_vi...Andy Lester
2020-03-04bpo-39639: Remove the AST "Suite" node and associated code (GH-18513)Batuhan Taşkaya
2020-01-05Fix SystemError when nested function has annotation on positional-only argume...Anthony Sottile
2019-10-14bpo-38469: Handle named expression scope with global/nonlocal keywords (GH-16...Pablo Galindo
2019-08-29bpo-37947: Avoid double-decrement in symtable recursion counting (GH-15593)Nick Coghlan
2019-08-26bpo-37954: Fix reference leak in the symtable (GH-15514)Pablo Galindo
2019-08-26bpo-37947: Adjust correctly the recursion level in symtable for named express...Pablo Galindo
2019-08-25bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15131)Nick Coghlan
2019-05-30bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer
2019-04-29bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo
2019-03-05bpo-36187: Remove NamedStore. (GH-12167)Serhiy Storchaka
2019-02-25bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka
2019-02-11Complete switch cases in symtable.c; fixes bpo-35963 (GH-11821)Guido van Rossum
2019-01-24bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse
2018-11-22bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664)Victor Stinner
2018-11-16Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576)Zackery Spytz
2018-11-12bpo-35081: Rename internal headers (GH-10275)Victor Stinner
2018-11-12bpo-35177: Add dependencies between header files (GH-10361)Victor Stinner
2018-11-01bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)Victor Stinner
2018-11-01bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner
2018-10-14bpo-34939: Allow annotated global names in module namespace (GH-9844)Pablo Galindo
2018-10-11Fix a possible decref of a borrowed reference in symtable.c. (GH-9786)Zackery Spytz
2018-09-27bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)Serhiy Storchaka
2018-09-24bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338)Ammar Askar
2018-02-27bpo-32836: Remove obsolete code from symtable pass (GH-5680)Nitish Chandra
2018-02-04bpo-10544: Disallow "yield" in comprehensions and generator expressions. (GH-...Serhiy Storchaka
2017-12-01bpo-10544: Deprecate "yield" in comprehensions and generator expressions. (GH...Serhiy Storchaka