summaryrefslogtreecommitdiff
path: root/Lib/test/test_ast.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-37995: Add an option to ast.dump() to produce a multiline output. (GH-15631)Serhiy Storchaka2019-09-091-0/+62
* bpo-37950: Fix ast.dump() when call with incompletely initialized node. (GH-1...Serhiy Storchaka2019-08-291-0/+29
* bpo-36917: Add default implementation of ast.NodeVisitor.visit_Constant(). (G...Serhiy Storchaka2019-08-261-0/+51
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-1/+1
* bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...Pablo Galindo2019-07-141-15/+15
* bpo-18374: fix tests to check the correct thing about line numbers (GH-14659)Carl Friedrich Bolz-Tereick2019-07-091-4/+4
* bpo-18374: fix wrong col_offset of some ast.BinOp instances (GH-14607)Carl Friedrich Bolz-Tereick2019-07-081-0/+30
* bpo-37112: Allow compile to work on AST with positional only arguments with d...Pablo Galindo2019-05-311-0/+22
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-24/+27
* bpo-36332: Allow compile() to handle AST objects with assignment expressions ...Pablo Galindo2019-03-181-0/+11
* bpo-36280: Add Constant.kind field (GH-12295)Guido van Rossum2019-03-131-44/+62
* bpo-35766: Merge typed_ast back into CPython (GH-11645)Guido van Rossum2019-01-311-65/+66
* bpo-33416: Add end positions to Python AST (GH-11605)Ivan Levkivskyi2019-01-221-20/+334
* bpo-35733: Make isinstance(ast.Constant(boolean), ast.Num) be false. (GH-11547)Anthony Sottile2019-01-181-0/+4
* bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642)Serhiy Storchaka2019-01-181-5/+6
* bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)Anthony Sottile2019-01-131-0/+19
* bpo-31241: Fix AST node position for list and generator comprehensions. (GH-1...Serhiy Storchaka2018-11-271-11/+40
* bpo-34876: Change the lineno of the AST for decorated function and class. (GH...Serhiy Storchaka2018-10-301-2/+14
* bpo-32892: Support subclasses of base types in isinstance checks for AST cons...Serhiy Storchaka2018-10-281-0/+4
* bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)Serhiy Storchaka2018-09-271-53/+151
* closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point ...guoci2018-09-111-4/+4
* bpo-33851: Fix ast.get_docstring() for a node that lacks a docstring. (GH-7682)Serhiy Storchaka2018-06-151-0/+31
* bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)Serhiy Storchaka2018-05-291-78/+63
* bpo-31778: Make ast.literal_eval() more strict. (#4035)Serhiy Storchaka2018-01-041-8/+31
* bpo-31592: Fix an assertion failure in Python parser in case of a bad unicode...Oren Milman2017-09-301-0/+10
* bpo-29637: clean docstring only if not None (GH-267)Matthias Bussonnier2017-02-241-0/+1
* bpo-29622: Make AST constructor to accept less than enough number of position...INADA Naoki2017-02-241-4/+0
* bpo-29463: Add docstring field to some AST nodes. (#46)INADA Naoki2017-02-221-73/+87
* Issue #28008: Implement PEP 530 -- asynchronous comprehensions.Yury Selivanov2016-09-091-16/+19
* Issue #27352: Fixed an error message in a test.Serhiy Storchaka2016-06-271-1/+1
* Issue #13436: Add a test to make sure that ast.ImportFrom(level=None) worksBerker Peksag2016-04-291-0/+11
* compiler: don't emit SyntaxWarning on const stmtVictor Stinner2016-02-081-5/+2
* compiler now ignores constant statementsVictor Stinner2016-02-081-17/+16
* Simplify main() of test_astVictor Stinner2016-02-081-2/+3
* Issue #26146: enhance ast.Constant error messageVictor Stinner2016-01-271-0/+6
* Add ast.ConstantVictor Stinner2016-01-261-1/+119
* make opening brace of container literals and comprehensions correspond to the...Benjamin Peterson2015-09-251-9/+9
* Issue #24975: Fix AST compilation for PEP 448 syntax.Yury Selivanov2015-09-011-9/+15
* Issue #24688: ast.get_docstring() for 'async def' functions.Yury Selivanov2015-07-231-0/+3
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-0/+9
* PEP 448: additional unpacking generalizations (closes #2292)Benjamin Peterson2015-05-051-35/+21
* revert lineno and col_offset changes from #16795 (closes #21295)Benjamin Peterson2015-02-021-31/+14
* set line and column numbers for keyword-only arg nodes (closes #20619)Benjamin Peterson2014-02-131-2/+2
* #18466: merge with 3.3.Ezio Melotti2013-08-171-1/+1
|\
| * #18466: fix more typos. Patch by FĂ©vry Thibault.Ezio Melotti2013-08-171-1/+1
* | Update various test modules to use unittest.main() for test discoveryBrett Cannon2013-06-121-4/+1
* | test_ast: pass the filename to ast.parse()Victor Stinner2013-03-221-1/+1
* | unify some ast.argument's attrs; change Attribute column offset (closes #16795)Benjamin Peterson2013-03-181-37/+45
* | create NameConstant AST class for None, True, and False literals (closes #16619)Benjamin Peterson2012-12-061-5/+8
|/
* Issue #16546: make ast.YieldFrom argument mandatory.Mark Dickinson2012-11-251-0/+8