]> granicus.if.org Git - python/commitdiff
#10869: do not visit root node twice in ast.increment_lineno().
authorGeorg Brandl <georg@python.org>
Sun, 9 Jan 2011 07:38:51 +0000 (07:38 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 9 Jan 2011 07:38:51 +0000 (07:38 +0000)
Doc/library/ast.rst
Lib/ast.py
Lib/test/test_ast.py
Misc/ACKS
Misc/NEWS

index a9821e1e8cf6c97a0e66ff544192addc8a58b55e..9d19771cbedf7732940657e96dc757cbcb134437 100644 (file)
@@ -173,9 +173,9 @@ and classes for traversing abstract syntax trees:
 
 .. function:: walk(node)
 
-   Recursively yield all child nodes of *node*, in no specified order.  This is
-   useful if you only want to modify nodes in place and don't care about the
-   context.
+   Recursively yield all descendant nodes in the tree starting at *node*
+   (including *node* itself), in no specified order.  This is useful if you only
+   want to modify nodes in place and don't care about the context.
 
 
 .. class:: NodeVisitor()
index 4b2063bd78f453453f55593e277aacf5e5910f7d..ba880c93ec07c5c656731a50e55e1bdb005e76c1 100644 (file)
@@ -159,8 +159,6 @@ def increment_lineno(node, n=1):
     Increment the line number of each node in the tree starting at *node* by *n*.
     This is useful to "move code" to a different location in a file.
     """
-    if 'lineno' in node._attributes:
-        node.lineno = getattr(node, 'lineno', 0) + n
     for child in walk(node):
         if 'lineno' in child._attributes:
             child.lineno = getattr(child, 'lineno', 0) + n
@@ -211,9 +209,9 @@ def get_docstring(node, clean=True):
 
 def walk(node):
     """
-    Recursively yield all child nodes of *node*, in no specified order.  This is
-    useful if you only want to modify nodes in place and don't care about the
-    context.
+    Recursively yield all descendant nodes in the tree starting at *node*
+    (including *node* itself), in no specified order.  This is useful if you
+    only want to modify nodes in place and don't care about the context.
     """
     from collections import deque
     todo = deque([node])
index 34456bc791e5767fc8b49e6cffcaed7fe0c0517f..499facd2c82657457f281851ae27d668b1a8b533 100644 (file)
@@ -264,6 +264,13 @@ class ASTHelpers_Test(unittest.TestCase):
             'op=Add(), right=Num(n=1, lineno=4, col_offset=4), lineno=4, '
             'col_offset=0))'
         )
+        # issue10869: do not increment lineno of root twice
+        self.assertEqual(ast.increment_lineno(src.body, n=3), src.body)
+        self.assertEqual(ast.dump(src, include_attributes=True),
+            'Expression(body=BinOp(left=Num(n=1, lineno=4, col_offset=0), '
+            'op=Add(), right=Num(n=1, lineno=4, col_offset=4), lineno=4, '
+            'col_offset=0))'
+        )
 
     def test_iter_fields(self):
         node = ast.parse('foo()', mode='eval')
index 6929e36cd392acd11c286dbbb1d9c0fa2d3b77f3..93e948dc845ed5efdd9403b0c3aa698106fb829c 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -905,6 +905,7 @@ Cliff Wells
 Rickard Westman
 Jeff Wheeler
 Christopher White
+David White
 Mats Wichmann
 Truida Wiedijk
 Felix Wiemann
index 2f8b6dbf2df07c1c71bed425be3d7330dec71423..2b2c283933985f3e8d997920fac93690af3628d0 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #10869: Fixed bug where ast.increment_lineno modified the root
+  node twice.
+
 - Issue #5871: email.header.Header.encode now raises an error if any
   continuation line in the formatted value has no leading white space
   and looks like a header.  Since Generator uses Header to format all