[Zope3-checkins] CVS: Zope3/lib/python/Zope/ContextWrapper - proxy.c:1.4 wrapper.c:1.14
Jeremy Hylton
jeremy@zope.com
Thu, 18 Jul 2002 18:43:11 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/ContextWrapper
In directory cvs.zope.org:/tmp/cvs-serv27810/lib/python/Zope/ContextWrapper
Modified Files:
proxy.c wrapper.c
Log Message:
staticforward does not appear to be necessary any more.
=== Zope3/lib/python/Zope/ContextWrapper/proxy.c 1.3 => 1.4 ===
#define PROXY_MODULE
#include "proxy.h"
-staticforward PyTypeObject ProxyType;
+static PyTypeObject ProxyType;
#define Proxy_Check(wrapper) (PyObject_TypeCheck((wrapper), &ProxyType))
=== Zope3/lib/python/Zope/ContextWrapper/wrapper.c 1.13 => 1.14 ===
(((WrapperObject *)wrapper)->wrap_dict)
-staticforward PyTypeObject WrapperType;
+static PyTypeObject WrapperType;
static PyObject *
empty_tuple = NULL;