[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/cache - __init__.py:1.3.6.1

Jim Fulton jim at zope.com
Mon Sep 8 15:22:12 EDT 2003


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

Modified Files:
      Tag: parentgeddon-branch
	__init__.py 
Log Message:
Checking in work in progress on parentgeddon-branch so Fred can help
me to get the tests passing.  Specific log entries will be provided
when we merge this into the head.


=== Zope3/src/zope/app/interfaces/cache/__init__.py 1.3 => 1.3.6.1 ===
--- Zope3/src/zope/app/interfaces/cache/__init__.py:1.3	Tue Aug 19 13:34:17 2003
+++ Zope3/src/zope/app/interfaces/cache/__init__.py	Mon Sep  8 14:21:41 2003
@@ -18,7 +18,6 @@
 from zope.app import zapi
 from zope.app.interfaces.event import ISubscriber
 from zope.app.services.servicenames import Caching
-from zope.context import ContextProperty
 from zope.interface import Interface
 from zope.schema import TextLine
 
@@ -34,7 +33,7 @@
         else:
             return [''] + list(service.getAvailableCaches())
 
-    allowed_values = ContextProperty(__allowed)
+    allowed_values = property(__allowed)
 
 
 class ICacheable(Interface):




More information about the Zope3-Checkins mailing list