| Commit message (Expand) | Author | Age | Files | Lines |
* | remove dead *-import checking code (closes #24049) | Benjamin Peterson | 2015-04-24 | 1 | -31/+0 |
|
|
* | merge 3.3 (#19098) | Benjamin Peterson | 2013-09-27 | 1 | -2/+6 |
|\ |
|
| * | don't scale compiler stack frames if the recursion limit is huge (closes #19098) | Benjamin Peterson | 2013-09-27 | 1 | -2/+6 |
|
|
| * | move definition to top of block | Benjamin Peterson | 2013-05-17 | 1 | -1/+2 |
|
|
| * | complain about "global __class__" in a class body (closes #17983) | Benjamin Peterson | 2013-05-15 | 1 | -0/+6 |
|
|
* | | Close #11619: The parser and the import machinery do not encode Unicode | Victor Stinner | 2013-08-26 | 1 | -15/+40 |
|
|
* | | Issue #18408: ste_new() initialize all attributes before handling error | Victor Stinner | 2013-07-11 | 1 | -13/+9 |
|
|
* | | rather than passing locals to the class body, just execute the class body in ... | Benjamin Peterson | 2013-05-16 | 1 | -6/+1 |
|
|
* | | hide the __class__ closure from the class body (#12370) | Benjamin Peterson | 2013-05-15 | 1 | -15/+19 |
|
|
* | | unify some ast.argument's attrs; change Attribute column offset (closes #16795) | Benjamin Peterson | 2013-03-18 | 1 | -6/+6 |
|
|
* | | create NameConstant AST class for None, True, and False literals (closes #16619) | Benjamin Peterson | 2012-12-06 | 1 | -0/+1 |
|
|
* | | Issue #16546: merge fix from 3.3 | Mark Dickinson | 2012-11-25 | 1 | -6/+6 |
|\ \
| |/ |
|
| * | Issue #16546: make ast.YieldFrom argument mandatory. | Mark Dickinson | 2012-11-25 | 1 | -6/+6 |
|
|
* | | Issue #5765: Merge from 3.3 | Nick Coghlan | 2012-11-04 | 1 | -31/+70 |
|\ \
| |/ |
|
| * | Issue #5765: Apply a hard recursion limit in the compiler | Nick Coghlan | 2012-11-04 | 1 | -29/+68 |
|
|
* | | point errors related to nonlocals and globals to the statement declaring them... | Benjamin Peterson | 2012-11-01 | 1 | -8/+49 |
|/ |
|
* | check return value of _PyUnicode_AsString | Benjamin Peterson | 2012-10-31 | 1 | -2/+6 |
|
|
* | Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to ... | Christian Heimes | 2012-09-12 | 1 | -1/+3 |
|\ |
|
| * | Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to ... | Christian Heimes | 2012-09-12 | 1 | -1/+3 |
|
|
* | | Partly revert ad3824a90261 and add comment about reference ownership | Christian Heimes | 2012-09-12 | 1 | -2/+1 |
|\ \
| |/ |
|
| * | Partly revert ad3824a90261 and add comment about reference ownership | Christian Heimes | 2012-09-12 | 1 | -2/+1 |
|
|
* | | Closed reference leak of variable 'k' in function ste_new which wasn't decref... | Christian Heimes | 2012-09-10 | 1 | -1/+2 |
|\ \
| |/ |
|
| * | Closed reference leak of variable 'k' in function ste_new which wasn't decref... | Christian Heimes | 2012-09-10 | 1 | -1/+2 |
|
|
* | | Close #14857: fix regression in references to PEP 3135 implicit __class__ clo... | Nick Coghlan | 2012-05-27 | 1 | -11/+8 |
|
|
* | | make YieldFrom its own distinct from Yield (closes #13780) | Benjamin Peterson | 2012-01-14 | 1 | -2/+6 |
|
|
* | | Implement PEP 380 - 'yield from' (closes #11682) | Nick Coghlan | 2012-01-13 | 1 | -19/+0 |
|
|
* | | Issue #13343: Fix a SystemError when a lambda expression uses a global | Amaury Forgeot d'Arc | 2011-11-04 | 1 | -0/+3 |
|\ \
| |/ |
|
| * | Issue #13343: Fix a SystemError when a lambda expression uses a global | Amaury Forgeot d'Arc | 2011-11-04 | 1 | -0/+3 |
|
|
* | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -4/+4 |
|
|
* | | fix possibily uninitialized memory usage (closes #12474) | Benjamin Peterson | 2011-07-02 | 1 | -2/+2 |
|
|
* | | store the current scope on the stack right away | Benjamin Peterson | 2011-06-30 | 1 | -21/+18 |
|
|
* | | remove VISIT_*_IN_BLOCK macros | Benjamin Peterson | 2011-06-29 | 1 | -41/+10 |
|
|
* | | merge 3.2 | Benjamin Peterson | 2011-06-21 | 1 | -6/+6 |
|\ \
| |/ |
|
| * | fix indentation | Benjamin Peterson | 2011-06-21 | 1 | -6/+6 |
|
|
* | | use a invalid name for the __class__ closure for super() (closes #12370) | Benjamin Peterson | 2011-06-20 | 1 | -8/+11 |
|
|
* | | unify TryExcept and TryFinally (closes #12199) | Benjamin Peterson | 2011-05-29 | 1 | -8/+5 |
|
|
* | | reflect with statements with multiple items in the AST (closes #12106) | Benjamin Peterson | 2011-05-27 | 1 | -4/+12 |
|
|
* | | Issue #9904: fix and clarify some comments + fix indentation in symtable code | Eli Bendersky | 2011-04-10 | 1 | -4/+4 |
|/ |
|
* | fix uninitialized struct member #10152 | Benjamin Peterson | 2010-10-20 | 1 | -0/+1 |
|
|
* | don't identify the toplevel namespace by name #9997 | Benjamin Peterson | 2010-10-16 | 1 | -1/+1 |
|
|
* | add column offset to all syntax errors | Benjamin Peterson | 2010-09-20 | 1 | -24/+37 |
|
|
* | revert unintended changes | Benjamin Peterson | 2010-07-20 | 1 | -9/+2 |
|
|
* | move test_trace.py so as not to conflict with future tests for the trace module | Benjamin Peterson | 2010-07-20 | 1 | -2/+9 |
|
|
* | Merged revisions 81906 via svnmerge from | Benjamin Peterson | 2010-06-11 | 1 | -1/+1 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -1307/+1307 |
|
|
* | Merged revisions 76423-76424 via svnmerge from | Benjamin Peterson | 2009-11-20 | 1 | -3/+2 |
|
|
* | Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,... | Benjamin Peterson | 2009-06-28 | 1 | -9/+1 |
|
|
* | fix error handling of PyNumber_InPlaceOr #6000 | Benjamin Peterson | 2009-05-12 | 1 | -16/+26 |
|
|
* | remove unused variable | Benjamin Peterson | 2009-04-02 | 1 | -1/+0 |
|
|
* | rewrite error handling to make sense | Benjamin Peterson | 2009-04-02 | 1 | -3/+7 |
|
|