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
/
Python
/
Python-ast.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-36280: Add Constant.kind field (GH-12295)
Guido van Rossum
2019-03-13
1
-5/+27
*
bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)
Guido van Rossum
2019-03-07
1
-0/+5
*
bpo-36187: Remove NamedStore. (GH-12167)
Serhiy Storchaka
2019-03-05
1
-20/+1
*
bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11...
Guido van Rossum
2019-02-01
1
-3/+2
*
bpo-35766: Merge typed_ast back into CPython (GH-11645)
Guido van Rossum
2019-01-31
1
-46/+466
*
bpo-35224: PEP 572 Implementation (#10497)
Emily Morehouse
2019-01-24
1
-1/+110
*
bpo-33416: Add end positions to Python AST (GH-11605)
Ivan Levkivskyi
2019-01-22
1
-124/+454
*
bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)
Serhiy Storchaka
2018-09-27
1
-308/+4
*
bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196)
Serhiy Storchaka
2018-05-31
1
-1/+2
*
bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)
Serhiy Storchaka
2018-05-29
1
-102/+17
*
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...
Serhiy Storchaka
2018-01-25
1
-1016/+1174
*
bpo-31572: Get rid of _PyObject_HasAttrId() in the ASDL parser. (#3725)
Serhiy Storchaka
2017-11-11
1
-610/+774
*
bpo-31095: fix potential crash during GC (GH-2974)
INADA Naoki
2017-08-24
1
-0/+2
*
Fix a shadow-compatible-local warning (#2180)
Yuan Chao Chou
2017-08-04
1
-165/+165
*
bpo-29622: Make AST constructor to accept less than enough number of position...
INADA Naoki
2017-02-23
1
-19/+17
*
bpo-29463: Add docstring field to some AST nodes. (#46)
INADA Naoki
2017-02-22
1
-17/+90
*
Issue #29369: Use Py_IDENTIFIER in Python-ast.c
INADA Naoki
2017-01-25
1
-6/+12
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-22/+11
*
Issue #24098: Fixed possible crash when AST is changed in process of
Serhiy Storchaka
2016-10-07
1
-0/+220
|
\
|
*
Issue #24098: Fixed possible crash when AST is changed in process of
Serhiy Storchaka
2016-10-07
1
-0/+216
|
*
Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when
Victor Stinner
2015-11-06
1
-2/+29
*
|
Issue #28008: Implement PEP 530 -- asynchronous comprehensions.
Yury Selivanov
2016-09-09
1
-3/+24
*
|
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.
Yury Selivanov
2016-09-09
1
-1/+123
*
|
Issue #26146: remove useless code
Victor Stinner
2016-01-26
1
-7/+0
*
|
Add ast.Constant
Victor Stinner
2016-01-25
1
-0/+79
*
|
Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when
Victor Stinner
2015-11-06
1
-2/+29
*
|
Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation...
Eric V. Smith
2015-09-19
1
-0/+165
*
|
Issue #15989: Fixed some scarcely probable integer overflows.
Serhiy Storchaka
2015-09-06
1
-1/+1
|
/
*
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-12
1
-0/+473
*
PEP 448: additional unpacking generalizations (closes #2292)
Benjamin Peterson
2015-05-06
1
-93/+12
*
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
Benjamin Peterson
2014-04-10
1
-3/+21
*
merge 3.3 (#20588)
Benjamin Peterson
2014-02-11
1
-2/+6
|
\
|
*
don't put runtime values in array initializer for C89 compliance (closes #20588)
Benjamin Peterson
2014-02-11
1
-2/+6
*
|
Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py".
Antoine Pitrou
2013-10-12
1
-48/+48
*
|
Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().
Christian Heimes
2013-07-26
1
-3/+7
|
\
\
|
|
/
|
*
Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().
Christian Heimes
2013-07-26
1
-3/+7
*
|
(Merge 3.3) Parser/asdl_c.py: use Py_CLEAR()
Victor Stinner
2013-07-26
1
-266/+133
|
\
\
|
|
/
|
*
Parser/asdl_c.py: use Py_CLEAR()
Victor Stinner
2013-07-26
1
-268/+134
*
|
(Merge 3.3) According to the PEP 7, C code must "use 4-space indents"
Victor Stinner
2013-07-26
1
-5856/+5811
|
\
\
|
|
/
|
*
According to the PEP 7, C code must "use 4-space indents"
Victor Stinner
2013-07-26
1
-5824/+5779
*
|
Issue #18408: Fix Python-ast.c: handle init_types() failure (ex: MemoryError)
Victor Stinner
2013-07-16
1
-3/+6
*
|
Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant()
Charles-Francois Natali
2013-05-20
1
-1/+1
*
|
bump Python-ast.c
Benjamin Peterson
2013-03-19
1
-1/+2
*
|
refactor to fix refleaks
Benjamin Peterson
2013-03-19
1
-22/+34
*
|
unify some ast.argument's attrs; change Attribute column offset (closes #16795)
Benjamin Peterson
2013-03-18
1
-102/+81
*
|
Replace IOError with OSError (#16715)
Andrew Svetlov
2012-12-25
1
-1/+0
*
|
create NameConstant AST class for None, True, and False literals (closes #16619)
Benjamin Peterson
2012-12-06
1
-0/+73
|
/
*
Issue #16546: make ast.YieldFrom argument mandatory.
Mark Dickinson
2012-11-25
1
-1/+7
*
add gc support to the AST base type (closes #15293)
Benjamin Peterson
2012-07-08
1
-4/+17
*
Issue #15291: Fix a memory leak where AST nodes where not properly deallocated.
Antoine Pitrou
2012-07-08
1
-0/+1
[next]