[Zope3-checkins] CVS: Zope3/src/zope/app/cache - ram.py:1.15

Jim Fulton jim at zope.com
Fri Mar 5 17:09:59 EST 2004


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

Modified Files:
	ram.py 
Log Message:
Renamed interface methods:

isImplementedByInstancesOf to implementedBy
  isImplementedBy            to providedBy


=== Zope3/src/zope/app/cache/ram.py 1.14 => 1.15 ===
--- Zope3/src/zope/app/cache/ram.py:1.14	Tue Mar  2 13:50:55 2004
+++ Zope3/src/zope/app/cache/ram.py	Fri Mar  5 17:08:57 2004
@@ -152,7 +152,7 @@
         cached entries for the objects that raise them.
         """
 
-        if IObjectModifiedEvent.isImplementedBy(event):
+        if IObjectModifiedEvent.providedBy(event):
             self._getStorage().invalidate(zapi.getPath(event.object))
 
 




More information about the Zope3-Checkins mailing list