index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Parser
/
asdl_c.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-111956: Add thread-safe one-time initialization. (gh-111960)
Sam Gross
2023-11-16
1
-47/+42
*
gh-106905: avoid incorrect SystemError about recursion depth mismatch (#106906)
Markus Mohrhard
2023-11-13
1
-0/+1
*
GH-91079: Rename C_RECURSION_LIMIT to Py_C_RECURSION_LIMIT (#108507)
Victor Stinner
2023-09-08
1
-2/+2
*
gh-108444: Remove _PyLong_AsInt() function (#108461)
Victor Stinner
2023-08-25
1
-1/+1
*
gh-108216: Cleanup #include in internal header files (#108228)
Victor Stinner
2023-08-21
1
-1/+1
*
gh-108113: Make it possible to create an optimized AST (#108154)
Irit Katriel
2023-08-21
1
-0/+3
*
GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFra...
Mark Shannon
2023-08-04
1
-1/+1
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-2/+1
*
gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)
Serhiy Storchaka
2023-07-12
1
-3/+3
*
GH-105588: Add missing error checks to some obj2ast_* converters (GH-105589)
Brandt Bucher
2023-06-15
1
-0/+1
*
gh-104799: Default missing lists in AST to the empty list (#104834)
Jelle Zijlstra
2023-06-02
1
-20/+29
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
gh-100227: Move _str_replace_inf to PyInterpreterState (gh-102333)
Eric Snow
2023-02-28
1
-3/+1
*
Fix some typos in asdl_c.py (GH-101757)
abel1502
2023-02-10
1
-2/+2
*
gh-99300: Use Py_NewRef() in Python/Python-ast.c (#99499)
Victor Stinner
2022-11-15
1
-4/+5
*
gh-81057: Move Global Variables Holding Objects to _PyRuntimeState. (gh-99487)
Eric Snow
2022-11-14
1
-0/+4
*
gh-99300: Use Py_NewRef() in Python/ directory (#99317)
Victor Stinner
2022-11-10
1
-8/+7
*
GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-...
Mark Shannon
2022-10-05
1
-6/+3
*
gh-95185: Check recursion depth in the AST constructor (#95186)
Pablo Galindo Salgado
2022-07-24
1
-1/+36
*
gh-84623: Remove unused imports (#94132)
Victor Stinner
2022-06-22
1
-1/+0
*
gh-92597: Ensure that AST nodes without explicit end positions can be compile...
Pablo Galindo Salgado
2022-05-31
1
-1/+13
*
Use static inline function Py_EnterRecursiveCall() (#91988)
Victor Stinner
2022-05-04
1
-5/+6
*
Fixed typo in "decclarations" (GH-28578)
Rajendra arora
2021-09-28
1
-1/+1
*
bpo-40528: fix is_simple(sum)s behavior for attributes (GH-26918)
Batuhan Taskaya
2021-06-27
1
-6/+10
*
bpo-40528: move asdl identifier collection to the new metadata system (GH-26858)
Batuhan Taskaya
2021-06-24
1
-49/+51
*
bpo-40528: Implement a metadata system for ASDL Generator (GH-20193)
Batuhan Taskaya
2021-06-22
1
-24/+75
*
bpo-11105: Do not crash when compiling recursive ASTs (GH-20594)
Batuhan Taskaya
2021-06-03
1
-4/+15
*
bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)
Victor Stinner
2021-04-07
1
-17/+8
*
bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)
Victor Stinner
2021-04-07
1
-36/+31
*
bpo-43244: Remove the pyarena.h header (GH-25007)
Victor Stinner
2021-03-24
1
-3/+3
*
bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)
Victor Stinner
2021-03-23
1
-28/+43
*
bpo-43244: Fix test_peg_generator for PyAST_Validate() (GH-24912)
Victor Stinner
2021-03-18
1
-30/+4
*
bpo-43244: Rename pycore_ast.h to pycore_ast_state.h (GH-24907)
Victor Stinner
2021-03-17
1
-4/+4
*
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher
2021-02-26
1
-1/+4
*
bpo-1635741: _ast uses PyModule_AddObjectRef() (GH-23146)
Victor Stinner
2020-11-04
1
-4/+2
*
bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131)
Victor Stinner
2020-11-03
1
-24/+45
*
bpo-41796: Make _ast module state per interpreter (GH-23024)
Victor Stinner
2020-11-02
1
-82/+161
*
bpo-42000: Cleanup the AST related C-code (GH-22641)
Batuhan Taskaya
2020-10-10
1
-42/+0
*
bpo-41746: Add type information to asdl_seq objects (GH-22223)
Pablo Galindo
2020-09-16
1
-6/+55
*
bpo-41631: _ast module uses again a global state (#21961)
Victor Stinner
2020-09-15
1
-41/+20
*
bpo-41204: Fix compiler warning in ast_type_init() (GH-21307)
Victor Stinner
2020-07-04
1
-4/+5
*
bpo-41194: Convert _ast extension to PEP 489 (GH-21293)
Victor Stinner
2020-07-03
1
-46/+73
*
bpo-41194: The _ast module cannot be loaded more than once (GH-21290)
Victor Stinner
2020-07-03
1
-39/+32
*
bpo-41194: Pass module state in Python-ast.c (GH-21284)
Victor Stinner
2020-07-03
1
-80/+102
*
bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...
Pablo Galindo
2020-05-27
1
-0/+1
*
bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)
RĂ©mi Lapeyre
2020-05-24
1
-3/+24
*
bpo-40528: Improve AST generation script to do builds simultaneously (GH-19968)
Batuhan Taskaya
2020-05-18
1
-85/+73
*
bpo-40528: Improve and clear several aspects of the ASDL definition code for ...
Batuhan Taskaya
2020-05-06
1
-8/+2
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-39999: Improve compatibility of the ast module. (GH-19056)
Serhiy Storchaka
2020-03-22
1
-3/+3
[next]