[issue3530] ast.NodeTransformer doc bug

2020-01-12 Thread miss-islington
miss-islington added the comment: New changeset e222b4c69f99953a14ded52497a9909e34fc3893 by Miss Islington (bot) in branch '3.7': bpo-3530: Add advice on when to correctly use fix_missing_locations in the AST docs (GH-17172)

[issue3530] ast.NodeTransformer doc bug

2020-01-12 Thread miss-islington
miss-islington added the comment: New changeset ef0af30e507a29dae03aae40459b9c44c96f260d by Miss Islington (bot) in branch '3.8': bpo-3530: Add advice on when to correctly use fix_missing_locations in the AST docs (GH-17172)

[issue3530] ast.NodeTransformer doc bug

2020-01-12 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue3530] ast.NodeTransformer doc bug

2020-01-12 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 6680f4a9f5d15ab82b2ab6266c6f917cb78c919a by Pablo Galindo (Batuhan Taşkaya) in branch 'master': bpo-3530: Add advice on when to correctly use fix_missing_locations in the AST docs (GH-17172)

[issue3530] ast.NodeTransformer doc bug

2020-01-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +17379 pull_request: https://github.com/python/cpython/pull/17972 ___ Python tracker ___

[issue3530] ast.NodeTransformer doc bug

2020-01-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +17380 pull_request: https://github.com/python/cpython/pull/17973 ___ Python tracker ___

[issue3530] ast.NodeTransformer doc bug

2019-11-16 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.7, Python 3.8, Python 3.9 -Python 3.4, Python 3.5, Python 3.6 ___ Python tracker ___

[issue3530] ast.NodeTransformer doc bug

2019-11-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: I re-verified the problem, its presence in the doc, and the fix with 3.9. -- ___ Python tracker ___

[issue3530] ast.NodeTransformer doc bug

2019-11-15 Thread Batuhan
Change by Batuhan : -- keywords: +patch pull_requests: +16681 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/17172 ___ Python tracker

[issue3530] ast.NodeTransformer doc bug

2015-06-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am reopening this as a doc bug because RewriteName is a copy (with 'ast.' prefixes added) of a buggy example in the doc. The bug is that the new .value Name and Str attributes do not get the required 'lineno' and 'col_offset' attributes. As Armin said,