COMMITS
/ Python/ast.c February 26, 2016
B
remove unused c_encoding struct member
Benjamin Peterson committed
B
rewrite parsestr() so it's comprehensible; remove dead code
Benjamin Peterson committed
B
c_encoding can never be NULL, which allows some code simplification
Benjamin Peterson committed
January 26, 2016
V
Issue #26146: enhance ast.Constant error message
Victor Stinner committed
V
Fix a refleak in validate_constant()
Victor Stinner committed
January 25, 2016
V
Add ast.Constant
Victor Stinner committed
January 18, 2016
G
Fix two instances of wrong indentation.
Georg Brandl committed
December 27, 2015
S
Issue #20440: More use of Py_SETREF.
Serhiy Storchaka committed
December 25, 2015
S
Issue #25923: Added the const qualifier to static constant arrays.
Serhiy Storchaka committed
November 6, 2015
V
Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when
Victor Stinner committed
V
Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when
Victor Stinner committed
October 7, 2015
M
One more typo in a comment
Martin Panter committed
September 26, 2015
B
merge 3.5 (#25131)
Benjamin Peterson committed
September 24, 2015
September 23, 2015
September 21, 2015
E
Issue #24779: Remove unused rawmode parameter to unicode_decode.
Eric V. Smith committed
September 19, 2015
September 3, 2015
V
Fix ast_for_atom()
Victor Stinner committed
September 2, 2015
Y
Merge 3.5 (issue #24975)
Yury Selivanov committed
September 1, 2015
Y
Issue #24975: Fix AST compilation for PEP 448 syntax.
Yury Selivanov committed
August 21, 2015
E
Fix a trivial typo.
Eric V. Smith committed
August 11, 2015
R
Issue #9232: Support trailing commas in function declarations.
Robert Collins committed
August 5, 2015
Y
Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'.
Yury Selivanov committed
May 12, 2015
Y
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov committed
May 6, 2015
B
PEP 448: additional unpacking generalizations (closes #2292)
Benjamin Peterson committed
March 18, 2015
V
Initialize variables to prevent GCC warnings
Victor Stinner committed
February 2, 2015
B
merge 3.4 (#21295)
Benjamin Peterson committed
B
revert lineno and col_offset changes from #16795 (closes #21295)
Benjamin Peterson committed
April 10, 2014
B
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
Benjamin Peterson committed
February 14, 2014
B
set line and column numbers for keyword-only arg nodes (closes #20619)
Benjamin Peterson committed
B
set line and column numbers for keyword-only arg nodes (closes #20619)
Benjamin Peterson committed
October 19, 2013
S
Issue #1772673: The type of `char*` arguments now changed to `const char*`.
Serhiy Storchaka committed
October 12, 2013
A
Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py".
Antoine Pitrou committed
August 26, 2013
V
Close #11619: The parser and the import machinery do not encode Unicode
Victor Stinner committed
July 24, 2013
C
Fix potential NULL pointer dereferencing in ast module
Christian Heimes committed
C
Fix potential NULL pointer dereferencing in ast module
Christian Heimes committed
July 17, 2013
V
Issue #18408: Fix ast_for_atom(), PyErr_Fetch(&type, &value, &tback) can set value to NULL
Victor Stinner committed
July 16, 2013
V
Issue #18408: Handle PyArena_AddPyObject() failure in ast.c
Victor Stinner committed
March 18, 2013
B
move declaration to top of block
Benjamin Peterson committed
B
unify some ast.argument's attrs; change Attribute column offset (closes #16795)
Benjamin Peterson committed
February 10, 2013
S
Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError
Serhiy Storchaka committed
S
Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError
Serhiy Storchaka committed
S
Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError
Serhiy Storchaka committed
February 9, 2013
A
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter.
Antoine Pitrou committed
A
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter.
Antoine Pitrou committed
A
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter.
Antoine Pitrou committed
December 6, 2012
B
create NameConstant AST class for None, True, and False literals (closes #16619)
Benjamin Peterson committed
November 25, 2012
M
Issue #16546: make ast.YieldFrom argument mandatory.
Mark Dickinson committed
September 10, 2012