[issue37950] ast.dump() with incomplete node

2019-08-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue37950] ast.dump() with incomplete node

2019-08-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 097eae5b9b4801d34bb900c01b5e6a80f028bc12 by Serhiy Storchaka in branch '3.8': [3.8] bpo-37950: Fix ast.dump() when call with incompletely initialized node. (GH-15510) (GH-15582) https://github.com/python/cpython/commit/097eae5b9b4801d34bb900c

[issue37950] ast.dump() with incomplete node

2019-08-29 Thread miss-islington
miss-islington added the comment: New changeset d3d2650cf84e6be0f84d6d0d538999d1e0cfdd43 by Miss Islington (bot) in branch '3.7': bpo-37950: Fix ast.dump() when call with incompletely initialized node. (GH-15510) https://github.com/python/cpython/commit/d3d2650cf84e6be0f84d6d0d538999d1e0cfdd

[issue37950] ast.dump() with incomplete node

2019-08-28 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +15258 pull_request: https://github.com/python/cpython/pull/15582 ___ Python tracker ___

[issue37950] ast.dump() with incomplete node

2019-08-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset e64f948e762a6b9fd02e2902ccf42438df6fcb61 by Serhiy Storchaka in branch 'master': bpo-37950: Fix ast.dump() when call with incompletely initialized node. (GH-15510) https://github.com/python/cpython/commit/e64f948e762a6b9fd02e2902ccf42438df6fc

[issue37950] ast.dump() with incomplete node

2019-08-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +15257 pull_request: https://github.com/python/cpython/pull/15581 ___ Python tracker ___ __

[issue37950] ast.dump() with incomplete node

2019-08-26 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +15196 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15510 ___ Python tracker ___

[issue37950] ast.dump() with incomplete node

2019-08-26 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : There are several issues in ast.dump() with incompletely initialized node. Some fields and attributes of AST nodes are optional, but creating an AST node without them leads ast.dump() to fail or to produce incorrect result. 1. With annotate_fields=False