[Checkins] SVN: persistent/trunk/ Avoid print-as-keyword.

Tres Seaver cvs-admin at zope.org
Fri Jun 29 04:02:13 UTC 2012


Log message for revision 127172:
  Avoid print-as-keyword.

Changed:
  _U  persistent/trunk/
  U   persistent/trunk/persistent/tests/cucumbers.py

-=-
Modified: persistent/trunk/persistent/tests/cucumbers.py
===================================================================
--- persistent/trunk/persistent/tests/cucumbers.py	2012-06-29 04:02:04 UTC (rev 127171)
+++ persistent/trunk/persistent/tests/cucumbers.py	2012-06-29 04:02:09 UTC (rev 127172)
@@ -19,9 +19,9 @@
 def print_dict(d):
     d = d.items()
     d.sort()
-    print '{%s}' % (', '.join(
+    print('{%s}' % (', '.join(
         [('%r: %r' % (k, v)) for (k, v) in d]
-        ))
+        )))
 
 def cmpattrs(self, other, *attrs):
     for attr in attrs:



More information about the checkins mailing list