no need for print in exectest
authorRobert Bradshaw <robertwb@math.washington.edu>
Fri, 10 Apr 2009 06:46:18 +0000 (23:46 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Fri, 10 Apr 2009 06:46:18 +0000 (23:46 -0700)
tests/run/exectest.pyx

index cb9f2383532eec6217da7aebee8f018635803f2d..2e297756a8f4e089dbfb7c0f89d59f710eb00a96 100644 (file)
@@ -10,32 +10,32 @@ __doc__ = u"""
 
 >>> d = {}
 >>> test_dict_scope2(d)
->>> print (d['b'])
+>>> d['b']
 2
 
 >>> d1 = {}
 >>> test_dict_scope3(d1, d1)
->>> print (d1['b'])
+>>> d1['b']
 2
 
 >>> d1, d2 = {}, {}
 >>> test_dict_scope3(d1, d2)
->>> print ((d1.get('b'), d2.get('b')))
+>>> (d1.get('b'), d2.get('b'))
 (None, 2)
 
 >>> d1, d2 = {}, {}
 >>> test_dict_scope3(d1, d2)
->>> print ((d1.get('b'), d2.get('b')))
+>>> (d1.get('b'), d2.get('b'))
 (None, 2)
 
 >>> d1, d2 = dict(a=11), dict(c=5)
 >>> test_dict_scope_ref(d1, d2)
->>> print ((d1.get('b'), d2.get('b')))
+>>> (d1.get('b'), d2.get('b'))
 (None, 16)
 
 >>> d = dict(a=11, c=5)
 >>> test_dict_scope_ref(d, d)
->>> print (d['b'])
+>>> d['b']
 16
 
 >>> d = dict(seq = [1,2,3,4])