[Zope3-checkins] CVS: Zope3/include/Zope/Proxy - proxy.h:1.2

Fred L. Drake, Jr. fdrake@acm.org
Tue, 13 Aug 2002 13:22:00 -0400


Update of /cvs-repository/Zope3/include/Zope/Proxy
In directory cvs.zope.org:/tmp/cvs-serv15998/include/Zope/Proxy

Modified Files:
	proxy.h 
Log Message:
Move the proxy base class implementation from Zope.ContextWrapper to
Zope.Proxy.


=== Zope3/include/Zope/Proxy/proxy.h 1.1 => 1.2 ===
--- Zope3/include/Zope/Proxy/proxy.h:1.1	Tue Aug 13 12:58:23 2002
+++ Zope3/include/Zope/Proxy/proxy.h	Tue Aug 13 13:21:27 2002
@@ -29,7 +29,7 @@
 Proxy_Import(void)
 {
     if (_proxy_api == NULL) {
-        PyObject *m = PyImport_ImportModule("Zope.ContextWrapper.proxy");
+        PyObject *m = PyImport_ImportModule("Zope.Proxy.proxy");
         if (m != NULL) {
             PyObject *tmp = PyObject_GetAttrString(m, "_CAPI");
             if (tmp != NULL) {