[Zope3-checkins] CVS: Zope3/src/zope/app/startup - bootstrap.py:1.16
Jim Fulton
jim@zope.com
Wed, 28 May 2003 11:46:43 -0400
Update of /cvs-repository/Zope3/src/zope/app/startup
In directory cvs.zope.org:/tmp/cvs-serv11310/src/zope/app/startup
Modified Files:
bootstrap.py
Log Message:
Deprecated zope.proxy.introspection. Just use zope.proxy.
=== Zope3/src/zope/app/startup/bootstrap.py 1.15 => 1.16 ===
--- Zope3/src/zope/app/startup/bootstrap.py:1.15 Sat Apr 12 07:52:18 2003
+++ Zope3/src/zope/app/startup/bootstrap.py Wed May 28 11:46:13 2003
@@ -24,7 +24,8 @@
from zope.app.traversing import traverse, traverseName
from zope.app.publication.zopepublication import ZopePublication
from zope.app.content.folder import RootFolder
-from zope.app.services.servicenames import EventPublication, HubIds, EventSubscription
+from zope.app.services.servicenames import HubIds
+from zope.app.services.servicenames import EventPublication, EventSubscription
from zope.app.services.servicenames import ErrorLogging
from zope.app.services.service import ServiceManager
from zope.app.services.service import ServiceConfiguration
@@ -33,7 +34,7 @@
from zope.app.services.errorr import ErrorReportingService
from zope.app.services.principalannotation import PrincipalAnnotationService
from zope.app.container.zopecontainer import ZopeContainerAdapter
-from zope.proxy.introspection import removeAllProxies
+from zope.proxy import removeAllProxies
from zope.app.event import publish
from zope.app.event.objectevent import ObjectCreatedEvent