[Zope3-checkins] CVS: Zope3/src/zope/app - attributeannotations.py:1.4 copypastemove.py:1.8 introspector.py:1.6
Jim Fulton
jim@zope.com
Wed, 28 May 2003 11:46:30 -0400
Update of /cvs-repository/Zope3/src/zope/app
In directory cvs.zope.org:/tmp/cvs-serv11310/src/zope/app
Modified Files:
attributeannotations.py copypastemove.py introspector.py
Log Message:
Deprecated zope.proxy.introspection. Just use zope.proxy.
=== Zope3/src/zope/app/attributeannotations.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/attributeannotations.py:1.3 Tue May 27 10:18:05 2003
+++ Zope3/src/zope/app/attributeannotations.py Wed May 28 11:45:58 2003
@@ -18,7 +18,7 @@
from zodb.btrees.OOBTree import OOBTree
from zope.app.interfaces.annotation import IAnnotations
-from zope.proxy.introspection import removeAllProxies
+from zope.proxy import removeAllProxies
from zope.context import ContextWrapper
class AttributeAnnotations:
=== Zope3/src/zope/app/copypastemove.py 1.7 => 1.8 ===
--- Zope3/src/zope/app/copypastemove.py:1.7 Wed May 21 16:27:41 2003
+++ Zope3/src/zope/app/copypastemove.py Wed May 28 11:45:58 2003
@@ -32,7 +32,7 @@
from zope.app.interfaces.container import IPasteTarget
from zope.app.event.objectevent import ObjectMovedEvent, ObjectCopiedEvent
from zope.app.event import publish
-from zope.proxy.introspection import removeAllProxies
+from zope.proxy import removeAllProxies
class ObjectMover:
'''Use getAdapter(obj, IObjectMover) to move an object somewhere.'''
=== Zope3/src/zope/app/introspector.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/introspector.py:1.5 Thu May 1 15:35:02 2003
+++ Zope3/src/zope/app/introspector.py Wed May 28 11:45:58 2003
@@ -18,7 +18,7 @@
from zope.app.interfaces.services.module import IModuleService
from zope.component import getServiceManager, getAdapter, \
getServiceDefinitions
-from zope.proxy.introspection import removeAllProxies
+from zope.proxy import removeAllProxies
class Introspector: