aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/Python-ast.c
Commit message (Expand)AuthorAge
* gh-117266: Fix crashes on user-created AST subclasses (GH-117276)Jelle Zijlstra2024-03-28
* gh-116437: Use new C API PyDict_Pop() to simplify the code (GH-116438)Serhiy Storchaka2024-03-07
* gh-105858: Improve AST node constructors (#105880)Jelle Zijlstra2024-02-27
* GH-113655: Lower the C recursion limit on various platforms (GH-113944)Mark Shannon2024-01-16
* gh-106905: Use separate structs to track recursion depth in each PyAST_mod2ob...Yilei Yang2023-12-25
* gh-111956: Add thread-safe one-time initialization. (gh-111960)Sam Gross2023-11-16
* gh-106905: avoid incorrect SystemError about recursion depth mismatch (#106906)Markus Mohrhard2023-11-13
* GH-91079: Rename C_RECURSION_LIMIT to Py_C_RECURSION_LIMIT (#108507)Victor Stinner2023-09-08
* gh-108444: Remove _PyLong_AsInt() function (#108461)Victor Stinner2023-08-25
* gh-108113: Make it possible to create an optimized AST (#108154)Irit Katriel2023-08-21
* GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFra...Mark Shannon2023-08-04
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-25
* gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)Serhiy Storchaka2023-07-12
* gh-106145: Make `end_{lineno,col_offset}` required on `type_param` nodes (#10...Nikita Sobolev2023-06-30
* GH-105588: Add missing error checks to some obj2ast_* converters (GH-105589)Brandt Bucher2023-06-15
* gh-104799: Default missing lists in AST to the empty list (#104834)Jelle Zijlstra2023-06-01
* gh-104799: Move location of type_params AST fields (#104828)Jelle Zijlstra2023-05-26
* gh-104656: Rename typeparams AST node to type_params (#104657)Jelle Zijlstra2023-05-21
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-15
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-05
* gh-100227: Move _str_replace_inf to PyInterpreterState (gh-102333)Eric Snow2023-02-28
* gh-99300: Use Py_NewRef() in Python/Python-ast.c (#99499)Victor Stinner2022-11-15
* gh-81057: Move Global Variables Holding Objects to _PyRuntimeState. (gh-99487)Eric Snow2022-11-14
* gh-99300: Use Py_NewRef() in Python/ directory (#99317)Victor Stinner2022-11-10
* GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-...Mark Shannon2022-10-05
* gh-95185: Check recursion depth in the AST constructor (#95186)Pablo Galindo Salgado2022-07-24
* gh-92597: Ensure that AST nodes without explicit end positions can be compile...Pablo Galindo Salgado2022-06-01
* Use static inline function Py_EnterRecursiveCall() (#91988)Victor Stinner2022-05-04
* bpo-46289: Make conversion of FormattedValue not optional on ASDL (GH-30467)Batuhan Taskaya2022-01-07
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-14
* bpo-11105: Do not crash when compiling recursive ASTs (GH-20594)Batuhan Taskaya2021-06-03
* bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan2021-04-28
* bpo-43798: Add source location attributes to alias (GH-25324)Matthew Suozzo2021-04-10
* bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)Victor Stinner2021-04-07
* bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)Victor Stinner2021-04-07
* bpo-43244: Remove the pyarena.h header (GH-25007)Victor Stinner2021-03-24
* bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)Victor Stinner2021-03-23
* bpo-43244: Fix test_peg_generator for PyAST_Validate() (GH-24912)Victor Stinner2021-03-18
* bpo-43244: Rename pycore_ast.h to pycore_ast_state.h (GH-24907)Victor Stinner2021-03-17
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-26
* bpo-1635741: _ast uses PyModule_AddObjectRef() (GH-23146)Victor Stinner2020-11-04
* bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131)Victor Stinner2020-11-03
* bpo-41796: Make _ast module state per interpreter (GH-23024)Victor Stinner2020-11-02
* bpo-41746: Add type information to asdl_seq objects (GH-22223)Pablo Galindo2020-09-16
* bpo-41631: _ast module uses again a global state (#21961)Victor Stinner2020-09-15
* bpo-41204: Fix compiler warning in ast_type_init() (GH-21307)Victor Stinner2020-07-04
* bpo-41194: Convert _ast extension to PEP 489 (GH-21293)Victor Stinner2020-07-03
* bpo-41194: The _ast module cannot be loaded more than once (GH-21290)Victor Stinner2020-07-03
* bpo-41194: Pass module state in Python-ast.c (GH-21284)Victor Stinner2020-07-03
* bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...Pablo Galindo2020-05-27