| Commit message (Expand) | Author | Age | Files | Lines |
* | [3.8] bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340) (GH-22857) | Irit Katriel | 2020-10-21 | 1 | -1/+1 |
|
|
* | [3.8] bpo-40726: handle uninitalized end_lineno on ast.increment_lineno (GH-2... | Batuhan Taskaya | 2020-08-05 | 1 | -5/+13 |
|
|
* | bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382) | Miss Islington (bot) | 2020-05-24 | 1 | -0/+7 |
|
|
* | bpo-40355: Improve error messages in ast.literal_eval with malformed Dict nod... | Miss Islington (bot) | 2020-05-05 | 1 | -4/+7 |
|
|
* | Fix syntax error in an example in the ast documentation and sync docstrings (... | Miss Islington (bot) | 2020-03-12 | 1 | -2/+2 |
|
|
* | [3.8] bpo-37950: Fix ast.dump() when call with incompletely initialized node.... | Serhiy Storchaka | 2019-08-29 | 1 | -15/+24 |
|
|
* | [3.8] bpo-36917: Add default implementation of ast.NodeVisitor.visit_Constant... | Miss Islington (bot) | 2019-08-26 | 1 | -0/+31 |
|
|
* | bpo-35766: compile(): rename feature_version parameter (GH-13994) (GH-14001) | Victor Stinner | 2019-06-12 | 1 | -1/+1 |
|
|
* | bpo-35766: Change format for feature_version to (major, minor) (GH-13992) (GH... | Miss Islington (bot) | 2019-06-12 | 1 | -1/+8 |
|
|
* | bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) | Guido van Rossum | 2019-03-07 | 1 | -2/+4 |
|
|
* | bpo-35766: Merge typed_ast back into CPython (GH-11645) | Guido van Rossum | 2019-01-31 | 1 | -2/+6 |
|
|
* | bpo-33416: Add end positions to Python AST (GH-11605) | Ivan Levkivskyi | 2019-01-22 | 1 | -8/+92 |
|
|
* | bpo-35733: Make isinstance(ast.Constant(boolean), ast.Num) be false. (GH-11547) | Anthony Sottile | 2019-01-18 | 1 | -1/+7 |
|
|
* | bpo-32892: Support subclasses of base types in isinstance checks for AST cons... | Serhiy Storchaka | 2018-10-28 | 1 | -1/+1 |
|
|
* | bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) | Serhiy Storchaka | 2018-09-27 | 1 | -9/+64 |
|
|
* | bpo-33851: Fix ast.get_docstring() for a node that lacks a docstring. (GH-7682) | Serhiy Storchaka | 2018-06-15 | 1 | -2/+2 |
|
|
* | bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197) | Serhiy Storchaka | 2018-05-29 | 1 | -1/+9 |
|
|
* | bpo-31778: Make ast.literal_eval() more strict. (#4035) | Serhiy Storchaka | 2018-01-04 | 1 | -15/+21 |
|
|
* | bpo-29637: clean docstring only if not None (GH-267) | Matthias Bussonnier | 2017-02-24 | 1 | -1/+4 |
|
|
* | bpo-29463: Add docstring field to some AST nodes. (#46) | INADA Naoki | 2017-02-22 | 1 | -9/+1 |
|
|
* | Add ast.Constant | Victor Stinner | 2016-01-25 | 1 | -22/+30 |
|
|
* | Issue #25670: Remove duplicate getattr() from ast.NodeTransformer | Victor Stinner | 2015-11-20 | 1 | -1/+0 |
|
|
* | Issue #24688: ast.get_docstring() for 'async def' functions. | Yury Selivanov | 2015-07-23 | 1 | -1/+1 |
|
|
* | create NameConstant AST class for None, True, and False literals (closes #16619) | Benjamin Peterson | 2012-12-06 | 1 | -4/+2 |
|
|
* | remove ast.__version__ (closes #12273) | Benjamin Peterson | 2011-07-16 | 1 | -1/+0 |
|
|
* | Add missing types to docstring of ast.literal_eval. | Éric Araujo | 2011-04-17 | 1 | -2/+2 |
|
|
* | Issue #11000 ast.parse parses source, not just expressions. | Terry Reedy | 2011-01-24 | 1 | -4/+4 |
|
|
* | #10869: do not visit root node twice in ast.increment_lineno(). | Georg Brandl | 2011-01-09 | 1 | -5/+3 |
|
|
* | Fix handling on negative numbers in ast.literal_eval(). | Raymond Hettinger | 2010-10-08 | 1 | -7/+13 |
|
|
* | remove pointless coding cookies | Florent Xicluna | 2010-08-30 | 1 | -1/+0 |
|
|
* | allow byte literals | Benjamin Peterson | 2010-07-11 | 1 | -1/+1 |
|
|
* | Allow set literals in literal_eval(). | Georg Brandl | 2010-07-11 | 1 | -0/+2 |
|
|
* | Merged revisions 68450,68480-68481,68493,68495,68501,68512,68514-68515,68534-... | Benjamin Peterson | 2009-01-16 | 1 | -0/+12 |
|
|
* | Merged revisions 66974,66977,66984,66989,66992,66994-66996,66998-67000,67007,... | Benjamin Peterson | 2008-10-25 | 1 | -0/+1 |
|
|
* | Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,... | Benjamin Peterson | 2008-07-02 | 1 | -1/+1 |
|
|
* | Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,... | Georg Brandl | 2008-06-10 | 1 | -0/+300 |
|
|