[Zope3-checkins] CVS: Zope3/src/zope/app/advanced - query.py:1.7

Philipp von Weitershausen philikon at philikon.de
Thu Apr 1 14:21:59 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/advanced
In directory cvs.zope.org:/tmp/cvs-serv1273

Modified Files:
	query.py 
Log Message:
We were using super in subclasses of AdvancedSuperClass; obviously that
did not work since it is not a new-style class. Thus, made it inherit
from object to fix that.


=== Zope3/src/zope/app/advanced/query.py 1.6 => 1.7 ===
--- Zope3/src/zope/app/advanced/query.py:1.6	Thu Apr  1 13:26:43 2004
+++ Zope3/src/zope/app/advanced/query.py	Thu Apr  1 14:21:59 2004
@@ -140,7 +140,7 @@
         )
         )
 
-class AdvancedSuperClass:
+class AdvancedSuperClass(object):
 
     def superHasAttr(self,attr):
         obj=self




More information about the Zope3-Checkins mailing list