[Zope3-checkins] CVS: Zope3/src/zope/app/workflow/stateful - instance.py:1.7
Steve Alexander
steve@cat-box.net
Sat, 7 Jun 2003 09:00:31 -0400
Update of /cvs-repository/Zope3/src/zope/app/workflow/stateful
In directory cvs.zope.org:/tmp/cvs-serv27748/src/zope/app/workflow/stateful
Modified Files:
instance.py
Log Message:
Removed the ContextAware mixin marker class.
It's a good idea, but should be implemented as a metaclass that makes
appropriate descriptors into contextdescriptors. That way, its actions
will be more predictable, and the C code to Wrapper can be simpler, and
needn't grow special cases.
=== Zope3/src/zope/app/workflow/stateful/instance.py 1.6 => 1.7 ===
--- Zope3/src/zope/app/workflow/stateful/instance.py:1.6 Fri Jun 6 12:34:53 2003
+++ Zope3/src/zope/app/workflow/stateful/instance.py Sat Jun 7 09:00:00 2003
@@ -28,7 +28,7 @@
from zope.component import getServiceManager
from zope.proxy import removeAllProxies
-from zope.context import ContextMethod, ContextAware
+from zope.context import ContextMethod
from zope.app.context import ContextWrapper
from zope.security.management import getSecurityManager