Index: pyyaml/trunk/tests3/test_recursive.py
===================================================================
--- pyyaml/trunk/tests/test_recursive.py	(revision 325)
+++ pyyaml/trunk/tests3/test_recursive.py	(revision 328)
@@ -24,5 +24,5 @@
 
 def test_recursive(recursive_filename, verbose=False):
-    exec open(recursive_filename, 'rb').read()
+    exec(open(recursive_filename, 'rb').read())
     value1 = value
     output1 = None
@@ -36,10 +36,10 @@
     finally:
         if verbose:
-            #print "VALUE1:", value1
-            #print "VALUE2:", value2
-            print "OUTPUT1:"
-            print output1
-            print "OUTPUT2:"
-            print output2
+            print("VALUE1:", value1)
+            print("VALUE2:", value2)
+            print("OUTPUT1:")
+            print(output1)
+            print("OUTPUT2:")
+            print(output2)
 
 test_recursive.unittest = ['.recursive']
