[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Caching/RAMCache - RAMCache.py:1.10

Gary Poster gary@zope.com
Sat, 21 Dec 2002 10:33:14 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Caching/RAMCache
In directory cvs.zope.org:/tmp/cvs-serv30423/lib/python/Zope/App/Caching/RAMCache

Modified Files:
	RAMCache.py 
Log Message:
Moves ObjectEvent, GlobalEventService, and Logger from the Zope.Event package to the Zope.App.Event package.

Does *not* redesign/refactor LocalEventService to accept paths and hubids and reject non-wrapped objects.  Maybe later.

This checkin may require you to hose your Data.fs.

For quadruple checking, I'll send a note to zope3-dev when I've confirmed that a fresh checkout works.




=== Zope3/lib/python/Zope/App/Caching/RAMCache/RAMCache.py 1.9 => 1.10 ===
--- Zope3/lib/python/Zope/App/Caching/RAMCache/RAMCache.py:1.9	Thu Dec 12 10:28:15 2002
+++ Zope3/lib/python/Zope/App/Caching/RAMCache/RAMCache.py	Sat Dec 21 10:32:43 2002
@@ -22,7 +22,7 @@
 from Zope.ComponentArchitecture import getAdapter
 from Zope.ComponentArchitecture.Exceptions import ComponentLookupError
 from Zope.App.Traversing.IPhysicallyLocatable import IPhysicallyLocatable
-from Zope.Event.IObjectEvent import IObjectModifiedEvent
+from Zope.App.Event.IObjectEvent import IObjectModifiedEvent
 
 # A global caches dictionary shared between threads
 caches = {}