COMMITS
/ Python/compile.c May 16, 2013
V
fix compilation on Windows
Victor Stinner committed
B
rather than passing locals to the class body, just execute the class body in the proper environment
Benjamin Peterson committed
May 15, 2013
B
hide the __class__ closure from the class body (#12370)
Benjamin Peterson committed
April 30, 2013
B
check local class namespace before reaching for cells (closes #17853)
Benjamin Peterson committed
April 19, 2013
E
Merge indentation fix from 3.3.
Ezio Melotti committed
E
Fix indentation.
Ezio Melotti committed
April 6, 2013
A
Issue #17645: convert an assert() into a proper exception in _Py_Mangle().
Antoine Pitrou committed
A
Issue #17645: convert an assert() into a proper exception in _Py_Mangle().
Antoine Pitrou committed
March 18, 2013
B
unify some ast.argument's attrs; change Attribute column offset (closes #16795)
Benjamin Peterson committed
February 10, 2013
B
evaluate lambda keyword-only defaults after positional defaults (#16967 again)
Benjamin Peterson committed
B
evaluate positional defaults before keyword-only defaults (closes #16967)
Benjamin Peterson committed
December 6, 2012
B
assert than we never try to deal with True, False, or None as a name
Benjamin Peterson committed
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
November 4, 2012
N
Issue #5765: Apply a hard recursion limit in the compiler
Nick Coghlan committed
July 18, 2012
B
remove unused variable
Benjamin Peterson committed
M
Issue #15368: fixing variable typo.
Meador Inge committed
M
Issue #15368: fixing variable typo.
Meador Inge committed
M
Issue #15368: make bytecode generation deterministic.
Meador Inge committed
M
Issue #15368: make bytecode generation deterministic.
Meador Inge committed
May 27, 2012
April 27, 2012
V
Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)
Victor Stinner committed
April 17, 2012
B
merge 3.2 (#14607)
Benjamin Peterson committed
B
mangle keyword-only argname when loading defaults (closes #14607)
Benjamin Peterson committed
March 15, 2012
B
perform yield from delegation by repeating YIELD_FROM opcode (closes #14230)
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
November 25, 2011
A
PEP 3155 / issue #13448: Qualified name for classes and functions.
Antoine Pitrou committed
September 28, 2011
V
Check for PyUnicode_CopyCharacters() failure
Victor Stinner committed
M
Implement PEP 393.
Martin v. Löwis committed
June 20, 2011
B
use a invalid name for the __class__ closure for super() (closes #12370)
Benjamin Peterson committed
May 29, 2011
B
unify TryExcept and TryFinally (closes #12199)
Benjamin Peterson committed
May 27, 2011
B
fix spacing
Benjamin Peterson committed
B
fix indentation
Benjamin Peterson committed
B
reflect with statements with multiple items in the AST (closes #12106)
Benjamin Peterson committed
V
Revert my commit 7ba176c2f558: "Avoid useless "++" at the end of functions
Victor Stinner committed
B
try to use the same str object for all code filenames when compiling or unmarshalling (#12190)
Benjamin Peterson committed
May 26, 2011
V
Avoid useless "++" at the end of functions
Victor Stinner committed
March 2, 2011
V
Remove useless argument of _PyUnicode_AsDefaultEncodedString()
Victor Stinner committed
December 4, 2010
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 17, 2010
V
compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename,
Victor Stinner committed
October 16, 2010
V
Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects
Victor Stinner committed
September 20, 2010
B
add column offset to all syntax errors
Benjamin Peterson committed
September 10, 2010
A
#4617: Previously it was illegal to delete a name from the local
Amaury Forgeot d'Arc committed