[pypy-commit] pypy default: test_ast.py edited online with Bitbucket

wenzhuman noreply at buildbot.pypy.org
Wed May 28 22:05:34 CEST 2014


Author: wenzhu man <manwenzhu at gmail.com>
Branch: 
Changeset: r71761:4573d0b99f0a
Date: 2014-03-20 03:05 +0000
http://bitbucket.org/pypy/pypy/changeset/4573d0b99f0a/

Log:	test_ast.py edited online with Bitbucket

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
@@ -402,7 +402,8 @@
         num_node = ast.Num(n=2,lineno=2)
         try:
             num_node2 = copy.deepcopy(num_node)
-        except: raise
+        except: 
+            raise
             
     def test_issue1673_Num_fullinit(self):
         import ast
@@ -410,7 +411,8 @@
         num_node = ast.Num(n=2,lineno=2,col_offset=3)
         try:
             num_node2 = copy.deepcopy(num_node)
-        except: raise
+        except: 
+            raise
             
     def test_issue1673_Str(self):
         import ast
@@ -418,4 +420,5 @@
         str_node = ast.Str(n=2,lineno=2)
         try:
             str_node2 = copy.deepcopy(str_node)
-        except: raise
+        except: 
+            raise


More information about the pypy-commit mailing list