[Zope3-checkins] CVS: Zope3/src/zope/app/component - hooks.py:1.8 nextservice.py:1.6
Jim Fulton
jim@zope.com
Wed, 28 May 2003 11:46:35 -0400
Update of /cvs-repository/Zope3/src/zope/app/component
In directory cvs.zope.org:/tmp/cvs-serv11310/src/zope/app/component
Modified Files:
hooks.py nextservice.py
Log Message:
Deprecated zope.proxy.introspection. Just use zope.proxy.
=== Zope3/src/zope/app/component/hooks.py 1.7 => 1.8 ===
--- Zope3/src/zope/app/component/hooks.py:1.7 Tue May 27 10:18:12 2003
+++ Zope3/src/zope/app/component/hooks.py Wed May 28 11:46:04 2003
@@ -24,7 +24,7 @@
from zope.context import getWrapperContainer, ContextWrapper
from zope.context import isWrapper, getWrapperData
from zope.component.service import serviceManager
-from zope.proxy.introspection import removeAllProxies
+from zope.proxy import removeAllProxies
from zope.security.proxy import trustedRemoveSecurityProxy
from zope.app.traversing import IContainmentRoot
=== Zope3/src/zope/app/component/nextservice.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/component/nextservice.py:1.5 Tue May 27 10:18:12 2003
+++ Zope3/src/zope/app/component/nextservice.py Wed May 28 11:46:04 2003
@@ -19,7 +19,7 @@
from zope.component.exceptions import ComponentLookupError
from zope.component.service import serviceManager
from zope.context import getWrapperContainer
-from zope.proxy.introspection import removeAllProxies
+from zope.proxy import removeAllProxies
from zope.app.interfaces.services.service import IServiceManagerContainer
from zope.app.component.hooks import getServiceManager_hook