aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/compile.c
Commit message (Expand)AuthorAge
* check local class namespace before reaching for cells (closes #17853)Benjamin Peterson2013-04-30
* Merge indentation fix from 3.3.Ezio Melotti2013-04-19
|\
| * Fix indentation.Ezio Melotti2013-04-19
* | Issue #17645: convert an assert() into a proper exception in _Py_Mangle().Antoine Pitrou2013-04-06
|\|
| * Issue #17645: convert an assert() into a proper exception in _Py_Mangle().Antoine Pitrou2013-04-06
* | unify some ast.argument's attrs; change Attribute column offset (closes #16795)Benjamin Peterson2013-03-18
* | evaluate lambda keyword-only defaults after positional defaults (#16967 again)Benjamin Peterson2013-02-10
* | evaluate positional defaults before keyword-only defaults (closes #16967)Benjamin Peterson2013-02-10
* | assert than we never try to deal with True, False, or None as a nameBenjamin Peterson2012-12-06
* | create NameConstant AST class for None, True, and False literals (closes #16619)Benjamin Peterson2012-12-06
|/
* Issue #16546: make ast.YieldFrom argument mandatory.Mark Dickinson2012-11-25
* Issue #5765: Apply a hard recursion limit in the compilerNick Coghlan2012-11-04
* remove unused variableBenjamin Peterson2012-07-18
* Issue #15368: fixing variable typo.Meador Inge2012-07-18
|\
| * Issue #15368: fixing variable typo.Meador Inge2012-07-18
* | Issue #15368: make bytecode generation deterministic.Meador Inge2012-07-18
|\|
| * Issue #15368: make bytecode generation deterministic.Meador Inge2012-07-18
* | Close #14857: fix regression in references to PEP 3135 implicit __class__ clo...Nick Coghlan2012-05-27
* | Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)Victor Stinner2012-04-27
* | merge 3.2 (#14607)Benjamin Peterson2012-04-17
|\|
| * mangle keyword-only argname when loading defaults (closes #14607)Benjamin Peterson2012-04-17
* | perform yield from delegation by repeating YIELD_FROM opcode (closes #14230)Benjamin Peterson2012-03-15
* | make YieldFrom its own distinct from Yield (closes #13780)Benjamin Peterson2012-01-14
* | Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-13
* | PEP 3155 / issue #13448: Qualified name for classes and functions.Antoine Pitrou2011-11-25
* | Check for PyUnicode_CopyCharacters() failureVictor Stinner2011-09-28
* | Implement PEP 393.Martin v. Löwis2011-09-28
* | use a invalid name for the __class__ closure for super() (closes #12370)Benjamin Peterson2011-06-19
* | unify TryExcept and TryFinally (closes #12199)Benjamin Peterson2011-05-29
* | merge 3.2Benjamin Peterson2011-05-27
|\|
| * merge 3.1Benjamin Peterson2011-05-27
| |\
| | * fix spacingBenjamin Peterson2011-05-27
* | | merge 3.2Benjamin Peterson2011-05-27
|\| |
| * | merge 3.1Benjamin Peterson2011-05-27
| |\|
| | * fix indentationBenjamin Peterson2011-05-27
| | * Recorded merge of revisions 85569-85570 via svnmerge fromVictor Stinner2010-10-19
| | * Merged revisions 82171 via svnmerge fromAntoine Pitrou2010-06-22
| | * Merged revisions 82059,82061 via svnmerge fromVictor Stinner2010-06-17
| | * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-09
| | * Merged revisions 76577 via svnmerge fromMark Dickinson2009-11-28
| | * Merged revisions 75441 via svnmerge fromMark Dickinson2009-10-27
| | * unfortunately we can't kill compiler_new_tmpname hereBenjamin Peterson2009-06-28
| | * Merged revisions 73623-73624 via svnmerge fromBenjamin Peterson2009-06-28
* | | reflect with statements with multiple items in the AST (closes #12106)Benjamin Peterson2011-05-27
* | | Revert my commit 7ba176c2f558: "Avoid useless "++" at the end of functionsVictor Stinner2011-05-27
* | | try to use the same str object for all code filenames when compiling or unmar...Benjamin Peterson2011-05-27
* | | Avoid useless "++" at the end of functionsVictor Stinner2011-05-26
* | | Remove useless argument of _PyUnicode_AsDefaultEncodedString()Victor Stinner2011-03-02
|/ /
* | Add an "optimize" parameter to compile() to control the optimization level, a...Georg Brandl2010-12-04
* | Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-30