[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/CachingService - CachingService.py:1.5

Guido van Rossum guido@python.org
Fri, 13 Dec 2002 15:09:42 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/CachingService
In directory cvs.zope.org:/tmp/cvs-serv23748

Modified Files:
	CachingService.py 
Log Message:
Remove redundant base class Persistent; putting it first caused a MRO
conflict with (current CVS) Python 2.3; it's redundant because
ProtoServiceEventChannel inherits from LocalEventChannel which
inherits from LocalSubscribable which inherits from Persistent.


=== Zope3/lib/python/Zope/App/OFS/Services/CachingService/CachingService.py 1.4 => 1.5 ===
--- Zope3/lib/python/Zope/App/OFS/Services/CachingService/CachingService.py:1.4	Thu Dec 12 10:28:16 2002
+++ Zope3/lib/python/Zope/App/OFS/Services/CachingService/CachingService.py	Fri Dec 13 15:09:42 2002
@@ -31,7 +31,7 @@
     """TTW manageable caching service"""
 
 
-class CachingService(Persistent, ProtoServiceEventChannel, NameConfigurable):
+class CachingService(ProtoServiceEventChannel, NameConfigurable):
 
     __implements__ = ILocalCachingService, ProtoServiceEventChannel.__implements__