Author: wenzhuman <manwen...@gamil.com>
Branch: 
Changeset: r71771:56d81b413df8
Date: 2014-05-28 17:04 -0400
http://bitbucket.org/pypy/pypy/changeset/56d81b413df8/

Log:    merge heads

diff --git a/pypy/module/_ast/test/test_ast.py 
b/pypy/module/_ast/test/test_ast.py
--- a/pypy/module/_ast/test/test_ast.py
+++ b/pypy/module/_ast/test/test_ast.py
@@ -390,7 +390,7 @@
         mod.body[0].body[0].handlers[0].lineno = 7
         mod.body[0].body[0].handlers[1].lineno = 6
         code = compile(mod, "<test>", "exec")
-
+        
     def test_dict_astNode(self):
         import ast
         num_node = ast.Num(n=2, lineno=2, col_offset=3)
@@ -404,7 +404,7 @@
         num_node = ast.Num(n=2,lineno=2)
         assert num_node.n == 2
         assert num_node.lineno == 2
-        num_node = copy.deepcopy(num_node)
+        num_node2 = copy.deepcopy(num_node)
 
     def test_issue1673_Num_fullinit(self):
         import ast
@@ -418,6 +418,7 @@
         assert dict_res == {'n':2, 'lineno':2, 'col_offset':3}
 
           
+            
     def test_issue1673_Str(self):
         import ast
         import copy
@@ -427,3 +428,4 @@
         str_node2 = copy.deepcopy(str_node)
         dict_res = str_node2.__dict__
         assert dict_res == {'n':2, 'lineno':2}
+
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to