[Zope3-checkins] CVS: Zope3/src/zope/publisher - publish.py:1.11 xmlrpc.py:1.6
Jim Fulton
jim@zope.com
Wed, 28 May 2003 11:46:15 -0400
Update of /cvs-repository/Zope3/src/zope/publisher
In directory cvs.zope.org:/tmp/cvs-serv11310/src/zope/publisher
Modified Files:
publish.py xmlrpc.py
Log Message:
Deprecated zope.proxy.introspection. Just use zope.proxy.
=== Zope3/src/zope/publisher/publish.py 1.10 => 1.11 ===
--- Zope3/src/zope/publisher/publish.py:1.10 Tue Apr 29 13:00:25 2003
+++ Zope3/src/zope/publisher/publish.py Wed May 28 11:46:14 2003
@@ -20,7 +20,7 @@
import sys
from zope.publisher.interfaces import Retry
-from zope.proxy.introspection import removeAllProxies
+from zope.proxy import removeAllProxies
_marker = [] # Create a new marker object.
=== Zope3/src/zope/publisher/xmlrpc.py 1.5 => 1.6 ===
--- Zope3/src/zope/publisher/xmlrpc.py:1.5 Fri Apr 11 08:55:41 2003
+++ Zope3/src/zope/publisher/xmlrpc.py Wed May 28 11:46:14 2003
@@ -25,7 +25,7 @@
from zope.publisher.http import HTTPRequest, HTTPResponse
from zope.publisher.http import DefaultPublisher
-from zope.proxy.introspection import removeAllProxies
+from zope.proxy import removeAllProxies
__metaclass__ = type # All classes are new style when run with Python 2.2+