[Checkins] SVN: Products.ZCatalog/trunk/src/Products/PluginIndexes/ new-style classes aren't new anymore

Hano Schlichting cvs-admin at zope.org
Sun Mar 25 13:45:00 UTC 2012


Log message for revision 124723:
  new-style classes aren't new anymore
  

Changed:
  U   Products.ZCatalog/trunk/src/Products/PluginIndexes/FieldIndex/tests.py
  U   Products.ZCatalog/trunk/src/Products/PluginIndexes/KeywordIndex/tests.py

-=-
Modified: Products.ZCatalog/trunk/src/Products/PluginIndexes/FieldIndex/tests.py
===================================================================
--- Products.ZCatalog/trunk/src/Products/PluginIndexes/FieldIndex/tests.py	2012-03-25 13:43:28 UTC (rev 124722)
+++ Products.ZCatalog/trunk/src/Products/PluginIndexes/FieldIndex/tests.py	2012-03-25 13:44:56 UTC (rev 124723)
@@ -18,7 +18,7 @@
 from Products.PluginIndexes.FieldIndex.FieldIndex import FieldIndex
 
 
-class Dummy:
+class Dummy(object):
 
     def __init__(self, foo):
         self._foo = foo

Modified: Products.ZCatalog/trunk/src/Products/PluginIndexes/KeywordIndex/tests.py
===================================================================
--- Products.ZCatalog/trunk/src/Products/PluginIndexes/KeywordIndex/tests.py	2012-03-25 13:43:28 UTC (rev 124722)
+++ Products.ZCatalog/trunk/src/Products/PluginIndexes/KeywordIndex/tests.py	2012-03-25 13:44:56 UTC (rev 124723)
@@ -16,7 +16,7 @@
 from Products.PluginIndexes.KeywordIndex.KeywordIndex import KeywordIndex
 
 
-class Dummy:
+class Dummy(object):
 
     def __init__(self, foo):
         self._foo = foo



More information about the checkins mailing list