| Commit message (Expand) | Author | Age | Files | Lines |
* | make opening brace of container literals and comprehensions correspond to the... | Benjamin Peterson | 2015-09-26 | 1 | -9/+9 |
|
|
* | Issue #24975: Fix AST compilation for PEP 448 syntax. | Yury Selivanov | 2015-09-01 | 1 | -9/+15 |
|
|
* | Issue #24688: ast.get_docstring() for 'async def' functions. | Yury Selivanov | 2015-07-23 | 1 | -0/+3 |
|
|
* | PEP 0492 -- Coroutines with async and await syntax. Issue #24017. | Yury Selivanov | 2015-05-12 | 1 | -0/+9 |
|
|
* | PEP 448: additional unpacking generalizations (closes #2292) | Benjamin Peterson | 2015-05-06 | 1 | -35/+21 |
|
|
* | revert lineno and col_offset changes from #16795 (closes #21295) | Benjamin Peterson | 2015-02-02 | 1 | -31/+14 |
|
|
* | set line and column numbers for keyword-only arg nodes (closes #20619) | Benjamin Peterson | 2014-02-14 | 1 | -2/+2 |
|
|
* | #18466: merge with 3.3. | Ezio Melotti | 2013-08-17 | 1 | -1/+1 |
|\ |
|
| * | #18466: fix more typos. Patch by FĂ©vry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -1/+1 |
|
|
* | | Update various test modules to use unittest.main() for test discovery | Brett Cannon | 2013-06-13 | 1 | -4/+1 |
|
|
* | | test_ast: pass the filename to ast.parse() | Victor Stinner | 2013-03-21 | 1 | -1/+1 |
|
|
* | | unify some ast.argument's attrs; change Attribute column offset (closes #16795) | Benjamin Peterson | 2013-03-18 | 1 | -37/+45 |
|
|
* | | create NameConstant AST class for None, True, and False literals (closes #16619) | Benjamin Peterson | 2012-12-06 | 1 | -5/+8 |
|/ |
|
* | Issue #16546: make ast.YieldFrom argument mandatory. | Mark Dickinson | 2012-11-25 | 1 | -0/+8 |
|
|
* | get rid of ast_error_finish by passing the compiling struct to ast_error | Benjamin Peterson | 2012-09-02 | 1 | -1/+3 |
|
|
* | merge 3.2 (#15846) | Benjamin Peterson | 2012-09-02 | 1 | -0/+6 |
|\ |
|
| * | prevert ast errors from being normalized before ast_error_finish is called (c... | Benjamin Peterson | 2012-09-02 | 1 | -0/+6 |
|
|
* | | test AST base type garbage collection | Benjamin Peterson | 2012-07-08 | 1 | -1/+14 |
|
|
* | | merge 3.2 (#14378) | Benjamin Peterson | 2012-03-22 | 1 | -0/+6 |
|\ \
| |/ |
|
| * | check by equality for __future__ not identity (closes #14378) | Benjamin Peterson | 2012-03-22 | 1 | -0/+6 |
|
|
* | | give the AST class a __dict__ | Benjamin Peterson | 2012-03-12 | 1 | -0/+3 |
|
|
* | | merge 3.2 | Benjamin Peterson | 2012-03-12 | 1 | -3/+0 |
|\ \
| |/ |
|
| * | allow AST objects to be like its subclasses | Benjamin Peterson | 2012-03-12 | 1 | -3/+0 |
|
|
* | | merge 3.2 | Benjamin Peterson | 2012-03-12 | 1 | -3/+0 |
|\ \
| |/ |
|
| * | every other ast object has a dict, so I think AST should, too | Benjamin Peterson | 2012-03-12 | 1 | -3/+0 |
|
|
* | | make YieldFrom its own distinct from Yield (closes #13780) | Benjamin Peterson | 2012-01-14 | 1 | -2/+2 |
|
|
* | | Implement PEP 380 - 'yield from' (closes #11682) | Nick Coghlan | 2012-01-13 | 1 | -1/+2 |
|
|
* | | Merge branch 3.2 | Amaury Forgeot d'Arc | 2011-11-22 | 1 | -0/+11 |
|\ \
| |/ |
|
| * | Issue #13436: Fix a bogus error message when an AST object was passed | Amaury Forgeot d'Arc | 2011-11-22 | 1 | -0/+11 |
|
|
* | | Merge 3.2, fix typos. | Florent Xicluna | 2011-11-11 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Fix few typos. | Florent Xicluna | 2011-11-11 | 1 | -1/+1 |
|
|
* | | fix indentation | Benjamin Peterson | 2011-08-09 | 1 | -1/+1 |
|
|
* | | add a AST validator (closes #12575) | Benjamin Peterson | 2011-08-09 | 1 | -2/+408 |
|
|
* | | merge 3.2 | Benjamin Peterson | 2011-07-22 | 1 | -0/+14 |
|\ \
| |/ |
|
| * | type check AST strings and identifiers | Benjamin Peterson | 2011-07-22 | 1 | -0/+14 |
|
|
* | | merge 3.2 | Benjamin Peterson | 2011-06-27 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | fix ws | Benjamin Peterson | 2011-06-27 | 1 | -1/+1 |
|
|
* | | merge 3.2 (#11302) | Benjamin Peterson | 2011-06-27 | 1 | -0/+180 |
|\ \
| |/ |
|
| * | add more ast tests (closes #11302) | Benjamin Peterson | 2011-06-27 | 1 | -0/+180 |
|
|
* | | unify TryExcept and TryFinally (closes #12199) | Benjamin Peterson | 2011-05-29 | 1 | -2/+2 |
|
|
* | | add some with syntax examples | Benjamin Peterson | 2011-05-27 | 1 | -0/+5 |
|/ |
|
* | Add missing line. | Georg Brandl | 2011-01-09 | 1 | -0/+1 |
|
|
* | #10869: do not visit root node twice in ast.increment_lineno(). | Georg Brandl | 2011-01-09 | 1 | -0/+7 |
|
|
* | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 1 | -10/+10 |
|
|
* | use %R format code; fixes invalid dereferencing #10391 | Benjamin Peterson | 2010-11-20 | 1 | -0/+7 |
|
|
* | Fix handling on negative numbers in ast.literal_eval(). | Raymond Hettinger | 2010-10-08 | 1 | -1/+3 |
|
|
* | allow byte literals | Benjamin Peterson | 2010-07-11 | 1 | -0/+1 |
|
|
* | test for set literals | Benjamin Peterson | 2010-07-11 | 1 | -0/+1 |
|
|
* | Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-... | Benjamin Peterson | 2009-11-13 | 1 | -0/+8 |
|
|
* | Merged revisions 74464 via svnmerge from | Benjamin Peterson | 2009-09-11 | 1 | -0/+7 |
|
|