[Zope3-checkins] CVS: Zope3/src/zope/proxy - _zope_proxy_proxy.c:1.5
Scott Pascoe
manager at planneditsolutions.com
Mon May 3 16:54:45 EDT 2004
Update of /cvs-repository/Zope3/src/zope/proxy
In directory cvs.zope.org:/tmp/cvs-serv12926/src/zope/proxy
Modified Files:
_zope_proxy_proxy.c
Log Message:
Spring Cleaning, Add ZPL
=== Zope3/src/zope/proxy/_zope_proxy_proxy.c 1.4 => 1.5 ===
--- Zope3/src/zope/proxy/_zope_proxy_proxy.c:1.4 Sun Sep 21 13:34:26 2003
+++ Zope3/src/zope/proxy/_zope_proxy_proxy.c Mon May 3 16:54:45 2004
@@ -1,3 +1,17 @@
+/*############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+############################################################################*/
+
#include "Python.h"
#include "modsupport.h"
@@ -1019,6 +1033,14 @@
return result;
}
+static char
+module___doc__[] =
+"Association between an object, a context object, and a dictionary.\n\
+\n\
+The context object and dictionary give additional context information\n\
+associated with a reference to the basic object. The wrapper objects\n\
+act as proxies for the original object.";
+
static PyMethodDef
module_functions[] = {
@@ -1033,15 +1055,6 @@
removeAllProxies__doc__},
{NULL}
};
-
-static char
-module___doc__[] =
-"Association between an object, a context object, and a dictionary.\n\
-\n\
-The context object and dictionary give additional context information\n\
-associated with a reference to the basic object. The wrapper objects\n\
-act as proxies for the original object.";
-
void
init_zope_proxy_proxy(void)
More information about the Zope3-Checkins
mailing list