COMMITS
/ Python/ast.c July 24, 2013
C
Fix potential NULL pointer dereferencing in ast module
Christian Heimes 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
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
November 25, 2012
M
Issue #16546: make ast.YieldFrom argument mandatory.
Mark Dickinson committed
September 10, 2012
C
September 2, 2012
B
put * in the normal place
Benjamin Peterson committed
B
get rid of ast_error_finish by passing the compiling struct to ast_error
Benjamin Peterson committed
B
move variable decl to the top of the function
Benjamin Peterson committed
B
merge 3.2 (#15846)
Benjamin Peterson committed
B
prevert ast errors from being normalized before ast_error_finish is called (closes #15846)
Benjamin Peterson committed
August 20, 2012
S
Check return value of asdl_seq_new(). Found by Coverity.
Stefan Krah committed
March 12, 2012
B
kill this disabled code
Benjamin Peterson committed
B
use correct naming convention
Benjamin Peterson committed
March 4, 2012
A
Basic support for PEP 414 without docs or tests.
Armin Ronacher committed
January 16, 2012
B
fix indentation
Benjamin Peterson committed
B
break out switch at correct place
Benjamin Peterson committed
B
only finish error if one occurred
Benjamin Peterson committed
B
move LINENO define to where it actually belongs
Benjamin Peterson committed
B
streamline normalizer identification a bit
Benjamin Peterson committed
B
fix spelling
Benjamin Peterson committed
B
invert condition (head bang)
Benjamin Peterson committed
B
fix possible refleaks
Benjamin Peterson committed
B
use helpful PyUnicode_IS_ASCII macro
Benjamin Peterson committed
B
PyUnicode_DecodeUTF8 will always return a ready string
Benjamin Peterson committed
B
rewrite such that this actually makes sense
Benjamin Peterson committed
January 14, 2012
B
make YieldFrom its own distinct from Yield (closes #13780)
Benjamin Peterson committed
January 13, 2012
N
Implement PEP 380 - 'yield from' (closes #11682)
Nick Coghlan committed
January 12, 2012
A
Issue #13748: Raw bytes literals can now be written with the `rb` prefix as well as `br`.
Antoine Pitrou committed
October 14, 2011
M
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis committed
October 9, 2011
M
Add API for static strings, primarily good for identifiers.
Martin v. Löwis committed
September 28, 2011
M
Implement PEP 393.
Martin v. Löwis committed
August 9, 2011
B
add a AST validator (closes #12575)
Benjamin Peterson committed
June 21, 2011
B
fix indentation
Benjamin Peterson committed
May 29, 2011
B
unify TryExcept and TryFinally (closes #12199)
Benjamin Peterson committed
May 27, 2011
B
reflect with statements with multiple items in the AST (closes #12106)
Benjamin Peterson committed
April 12, 2011
February 22, 2011
B
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon committed
November 30, 2010
G
Remove redundant includes of headers that are already included by Python.h.
Georg Brandl committed
October 19, 2010
V
Recorded merge of revisions 85569-85570 via svnmerge from
Victor Stinner committed
October 16, 2010
V
Fix ast_error_finish() and err_input(): filename can be NULL
Victor Stinner committed