| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-36280: Add Constant.kind field (GH-12295) | Guido van Rossum | 2019-03-13 | 1 | -44/+62 |
|
|
* | bpo-35766: Merge typed_ast back into CPython (GH-11645) | Guido van Rossum | 2019-01-31 | 1 | -65/+66 |
|
|
* | bpo-33416: Add end positions to Python AST (GH-11605) | Ivan Levkivskyi | 2019-01-22 | 1 | -20/+334 |
|
|
* | bpo-35733: Make isinstance(ast.Constant(boolean), ast.Num) be false. (GH-11547) | Anthony Sottile | 2019-01-18 | 1 | -0/+4 |
|
|
* | bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642) | Serhiy Storchaka | 2019-01-18 | 1 | -5/+6 |
|
|
* | bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021) | Anthony Sottile | 2019-01-13 | 1 | -0/+19 |
|
|
* | bpo-31241: Fix AST node position for list and generator comprehensions. (GH-1... | Serhiy Storchaka | 2018-11-27 | 1 | -11/+40 |
|
|
* | bpo-34876: Change the lineno of the AST for decorated function and class. (GH... | Serhiy Storchaka | 2018-10-30 | 1 | -2/+14 |
|
|
* | bpo-32892: Support subclasses of base types in isinstance checks for AST cons... | Serhiy Storchaka | 2018-10-28 | 1 | -0/+4 |
|
|
* | bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) | Serhiy Storchaka | 2018-09-27 | 1 | -53/+151 |
|
|
* | closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point ... | guoci | 2018-09-11 | 1 | -4/+4 |
|
|
* | bpo-33851: Fix ast.get_docstring() for a node that lacks a docstring. (GH-7682) | Serhiy Storchaka | 2018-06-15 | 1 | -0/+31 |
|
|
* | bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197) | Serhiy Storchaka | 2018-05-29 | 1 | -78/+63 |
|
|
* | bpo-31778: Make ast.literal_eval() more strict. (#4035) | Serhiy Storchaka | 2018-01-04 | 1 | -8/+31 |
|
|
* | bpo-31592: Fix an assertion failure in Python parser in case of a bad unicode... | Oren Milman | 2017-09-30 | 1 | -0/+10 |
|
|
* | bpo-29637: clean docstring only if not None (GH-267) | Matthias Bussonnier | 2017-02-24 | 1 | -0/+1 |
|
|
* | bpo-29622: Make AST constructor to accept less than enough number of position... | INADA Naoki | 2017-02-23 | 1 | -4/+0 |
|
|
* | bpo-29463: Add docstring field to some AST nodes. (#46) | INADA Naoki | 2017-02-22 | 1 | -73/+87 |
|
|
* | Issue #28008: Implement PEP 530 -- asynchronous comprehensions. | Yury Selivanov | 2016-09-09 | 1 | -16/+19 |
|
|
* | Issue #27352: Fixed an error message in a test. | Serhiy Storchaka | 2016-06-27 | 1 | -1/+1 |
|
|
* | Issue #13436: Add a test to make sure that ast.ImportFrom(level=None) works | Berker Peksag | 2016-04-29 | 1 | -0/+11 |
|
|
* | compiler: don't emit SyntaxWarning on const stmt | Victor Stinner | 2016-02-08 | 1 | -5/+2 |
|
|
* | compiler now ignores constant statements | Victor Stinner | 2016-02-08 | 1 | -17/+16 |
|
|
* | Simplify main() of test_ast | Victor Stinner | 2016-02-08 | 1 | -2/+3 |
|
|
* | Issue #26146: enhance ast.Constant error message | Victor Stinner | 2016-01-26 | 1 | -0/+6 |
|
|
* | Add ast.Constant | Victor Stinner | 2016-01-25 | 1 | -1/+119 |
|
|
* | 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 |
|\ \
| |/ |
|