| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation... | Eric V. Smith | 2015-09-19 | 1 | -0/+2 |
* | PEP 0492 -- Coroutines with async and await syntax. Issue #24017. | Yury Selivanov | 2015-05-11 | 1 | -1/+7 |
* | PEP 448: additional unpacking generalizations (closes #2292) | Benjamin Peterson | 2015-05-05 | 1 | -6/+3 |
* | Removed trailing whitespaces in miscalenous files. | Serhiy Storchaka | 2015-04-03 | 1 | -8/+8 |
* | PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) | Benjamin Peterson | 2014-04-09 | 1 | -1/+1 |
* | unify some ast.argument's attrs; change Attribute column offset (closes #16795) | Benjamin Peterson | 2013-03-18 | 1 | -4/+4 |
* | create NameConstant AST class for None, True, and False literals (closes #16619) | Benjamin Peterson | 2012-12-06 | 1 | -2/+2 |
* | Issue #16546: make ast.YieldFrom argument mandatory. | Mark Dickinson | 2012-11-25 | 1 | -1/+1 |
* | murder tabs | Benjamin Peterson | 2012-01-16 | 1 | -98/+98 |
* | make YieldFrom its own distinct from Yield (closes #13780) | Benjamin Peterson | 2012-01-14 | 1 | -1/+2 |
* | Implement PEP 380 - 'yield from' (closes #11682) | Nick Coghlan | 2012-01-13 | 1 | -1/+1 |
* | add a asdl bytes type, so Bytes.s be properly typechecked | Benjamin Peterson | 2011-08-09 | 1 | -2/+2 |
* | comment which is not applicable anymore | Benjamin Peterson | 2011-07-15 | 1 | -1/+0 |
* | unify TryExcept and TryFinally (closes #12199) | Benjamin Peterson | 2011-05-29 | 1 | -2/+1 |
* | reflect with statements with multiple items in the AST (closes #12106) | Benjamin Peterson | 2011-05-27 | 1 | -1/+3 |
* | convert ast versioning to mercurial | Benjamin Peterson | 2011-03-12 | 1 | -1/+1 |
* | Merged revisions 82160 via svnmerge from | Benjamin Peterson | 2010-06-22 | 1 | -1/+1 |
* | Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,... | Benjamin Peterson | 2009-06-28 | 1 | -1/+1 |
* | there are only four asdl builtin types in py3k | Benjamin Peterson | 2008-12-06 | 1 | -1/+1 |
* | Merged revisions 62047 via svnmerge from | Neal Norwitz | 2008-03-31 | 1 | -5/+2 |
* | Issue #1066: implement PEP 3109, 2/3 of PEP 3134. | Collin Winter | 2007-08-31 | 1 | -2/+1 |
* | Merged revisions 56154-56264 via svnmerge from | Guido van Rossum | 2007-07-11 | 1 | -1/+2 |
* | Merged revisions 55407-55513 via svnmerge from | Guido van Rossum | 2007-05-22 | 1 | -2/+3 |
* | Merged revisions 55328-55341 via svnmerge from | Guido van Rossum | 2007-05-15 | 1 | -2/+1 |
* | Merged revisions 55225-55227,55229-55269 via svnmerge from | Guido van Rossum | 2007-05-11 | 1 | -0/+1 |
* | Hide list comp variables and support set comprehensions | Nick Coghlan | 2007-04-15 | 1 | -0/+1 |
* | Implement PEP 3115 -- new metaclass syntax and semantics. | Guido van Rossum | 2007-03-18 | 1 | -1/+6 |
* | Provisional implementation of PEP 3104. | Jeremy Hylton | 2007-02-27 | 1 | -0/+1 |
* | bool is no longer required, it was only used for the print statement | Neal Norwitz | 2007-02-26 | 1 | -1/+1 |
* | Touch file to regenerate Python-ast.[ch] | Thomas Wouters | 2007-02-23 | 1 | -0/+1 |
* | Bytes literal. | Thomas Wouters | 2007-02-23 | 1 | -0/+1 |
* | Merged revisions 53623-53858 via svnmerge from | Thomas Wouters | 2007-02-23 | 1 | -1/+1 |
* | * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. | Georg Brandl | 2007-02-09 | 1 | -3/+0 |
* | Some more changes related to the new except syntax and semantics, | Guido van Rossum | 2007-01-10 | 1 | -1/+1 |
* | PEP 3107 - Function Annotations thanks to Tony Lownds | Neal Norwitz | 2006-12-28 | 1 | -3/+7 |
* | Jiwon Seo's PEP 3102 implementation. | Guido van Rossum | 2006-10-27 | 1 | -2/+2 |
* | Patch #1550786: ellipsis literal. | Georg Brandl | 2006-09-06 | 1 | -1/+2 |
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -5/+0 |
* | SF patch 1547796 by Georg Brandl -- set literals. | Guido van Rossum | 2006-08-28 | 1 | -0/+1 |
* | Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the | Brett Cannon | 2006-08-25 | 1 | -1/+0 |
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -2/+5 |
* | Patch #1440601: Add col_offset attribute to AST nodes. | Martin v. Löwis | 2006-03-01 | 1 | -2/+4 |
* | SF patch #1438387, PEP 328: relative and absolute imports. | Thomas Wouters | 2006-02-28 | 1 | -1/+1 |
* | Add support for version field on Modules | Martin v. Löwis | 2006-02-28 | 1 | -1/+1 |
* | PEP 343 -- the with-statement. | Guido van Rossum | 2006-02-27 | 1 | -0/+1 |
* | PEP 308 implementation, including minor refdocs and some testcases. It | Thomas Wouters | 2006-02-27 | 1 | -0/+1 |
* | Improved handling of syntax errors. | Jeremy Hylton | 2006-01-27 | 1 | -0/+1 |
* | Thou shalt not lie, there are really 5 types now | Neal Norwitz | 2005-11-15 | 1 | -1/+1 |
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 1 | -0/+107 |