summaryrefslogtreecommitdiff
path: root/Lib/test/test_ast.py
Commit message (Expand)AuthorAgeFilesLines
* [3.9] bpo-11105: reduce the recursion limit for tests. (GH-26605)Batuhan Taskaya2021-06-081-2/+4
* [3.9] bpo-11105: Do not crash when compiling recursive ASTs (GH-20594) (GH-26...Batuhan Taskaya2021-06-031-0/+14
* [3.9] bpo-41631: _ast module uses again a global state (GH-21961) (GH-22258)Pablo Galindo2020-09-151-0/+84
* bpo-40726: handle uninitalized end_lineno on ast.increment_lineno (GH-20312)Miss Islington (bot)2020-08-051-0/+11
* bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)Miss Islington (bot)2020-06-061-0/+7
* [3.9] bpo-40614: Respect feature version for f-string debug expressions (GH-2...Pablo Galindo2020-05-271-0/+5
* bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)Miss Islington (bot)2020-05-241-0/+9
* bpo-40662: Fixed ast.get_source_segment for ast nodes that have incomplete lo...Irit Katriel2020-05-181-0/+11
* bpo-40528: Improve and clear several aspects of the ASDL definition code for ...Batuhan Taskaya2020-05-061-1/+1
* bpo-40355: Improve error messages in ast.literal_eval with malformed Dict nod...Curtis Bucher2020-05-051-0/+6
* bpo-40141: Include the value in the column position for keyword AST nodes (GH...Pablo Galindo2020-04-031-1/+1
* bpo-40141: Add line and column information to ast.keyword nodes (GH-19283)Pablo Galindo2020-04-021-1/+1
* bpo-39999: Improve compatibility of the ast module. (GH-19056)Serhiy Storchaka2020-03-221-2/+2
* bpo-40000: Improve error messages when validating invalid ast.Constant nodes ...Batuhan Taşkaya2020-03-191-0/+9
* bpo-39638: Keep ASDL signatures in the AST nodes (GH-18515)Batuhan Taşkaya2020-03-161-0/+10
* bpo-34822: Simplify AST for subscription. (GH-9605)Serhiy Storchaka2020-03-101-10/+14
* bpo-36287: Make ast.dump() not output optional fields and attributes with def...Serhiy Storchaka2020-03-101-14/+15
* bpo-38870: Implement a precedence algorithm in ast.unparse (GH-17377)Batuhan Taşkaya2020-03-011-1/+8
* bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)Serhiy Storchaka2020-02-121-0/+27
* bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405)Lysandros Nikolaou2020-02-071-0/+8
* bpo-39235: Check end_lineno and end_col_offset of AST nodes. (GH-17926)Serhiy Storchaka2020-01-101-102/+104
* bpo-39158: ast.literal_eval() doesn't support empty sets (GH-17742)Raymond Hettinger2020-01-021-0/+1
* bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645)Lysandros Nikolaou2019-12-181-0/+9
* Fix elif start column offset when there is an else following (GH-17596)Lysandros Nikolaou2019-12-141-0/+9
* bpo-39031: Include elif keyword when producing lineno/col-offset info for if_...Lysandros Nikolaou2019-12-121-0/+9
* bpo-38535: Fix positions for AST nodes for calls without arguments in decorat...Serhiy Storchaka2019-10-261-6/+6
* 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