Commit 8c290b40 authored by Jim Fulton's avatar Jim Fulton

*** empty log message ***

parent 0f44db10
/*
$Id: Acquisition.c,v 1.6 1997/06/19 19:31:39 jim Exp $
$Id: Acquisition.c,v 1.7 1997/06/19 19:32:31 jim Exp $
Acquisition Wrappers -- Implementation of acquisition through wrappers
......@@ -59,6 +59,9 @@
Full description
$Log: Acquisition.c,v $
Revision 1.7 1997/06/19 19:32:31 jim
*** empty log message ***
Revision 1.6 1997/06/19 19:31:39 jim
Added ident string.
......@@ -715,7 +718,7 @@ void
initAcquisition()
{
PyObject *m, *d;
char *rev="$Revision: 1.6 $";
char *rev="$Revision: 1.7 $";
PURE_MIXIN_CLASS(Acquirer,
"Base class for objects that implicitly"
" acquire attributes from containers\n"
......@@ -730,7 +733,7 @@ initAcquisition()
/* Create the module and add the functions */
m = Py_InitModule4("Acquisition", methods,
"Provide base classes for acquiring objects\n\n"
"$Id: Acquisition.c,v 1.6 1997/06/19 19:31:39 jim Exp $\n"
"$Id: Acquisition.c,v 1.7 1997/06/19 19:32:31 jim Exp $\n",
(PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m);
......
......@@ -21,7 +21,7 @@ void
initMethodObject()
{
PyObject *m, *d;
char *rev="$Revision: 1.3 $";
char *rev="$Revision: 1.4 $";
PURE_MIXIN_CLASS(Method,
"Base class for objects that want to be treated as methods\n"
"\n"
......@@ -36,8 +36,8 @@ initMethodObject()
/* Create the module and add the functions */
m = Py_InitModule4("MethodObject", methods,
"Method-object mix-in class module\n\n",
"$Id: MethodObject.c,v 1.3 1997/06/19 19:34:23 jim Exp $\n",
"Method-object mix-in class module\n\n"
"$Id: MethodObject.c,v 1.4 1997/06/19 19:34:41 jim Exp $\n",
(PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m);
......
/*
$Id: Acquisition.c,v 1.6 1997/06/19 19:31:39 jim Exp $
$Id: Acquisition.c,v 1.7 1997/06/19 19:32:31 jim Exp $
Acquisition Wrappers -- Implementation of acquisition through wrappers
......@@ -59,6 +59,9 @@
Full description
$Log: Acquisition.c,v $
Revision 1.7 1997/06/19 19:32:31 jim
*** empty log message ***
Revision 1.6 1997/06/19 19:31:39 jim
Added ident string.
......@@ -715,7 +718,7 @@ void
initAcquisition()
{
PyObject *m, *d;
char *rev="$Revision: 1.6 $";
char *rev="$Revision: 1.7 $";
PURE_MIXIN_CLASS(Acquirer,
"Base class for objects that implicitly"
" acquire attributes from containers\n"
......@@ -730,7 +733,7 @@ initAcquisition()
/* Create the module and add the functions */
m = Py_InitModule4("Acquisition", methods,
"Provide base classes for acquiring objects\n\n"
"$Id: Acquisition.c,v 1.6 1997/06/19 19:31:39 jim Exp $\n"
"$Id: Acquisition.c,v 1.7 1997/06/19 19:32:31 jim Exp $\n",
(PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m);
......
......@@ -21,7 +21,7 @@ void
initMethodObject()
{
PyObject *m, *d;
char *rev="$Revision: 1.3 $";
char *rev="$Revision: 1.4 $";
PURE_MIXIN_CLASS(Method,
"Base class for objects that want to be treated as methods\n"
"\n"
......@@ -36,8 +36,8 @@ initMethodObject()
/* Create the module and add the functions */
m = Py_InitModule4("MethodObject", methods,
"Method-object mix-in class module\n\n",
"$Id: MethodObject.c,v 1.3 1997/06/19 19:34:23 jim Exp $\n",
"Method-object mix-in class module\n\n"
"$Id: MethodObject.c,v 1.4 1997/06/19 19:34:41 jim Exp $\n",
(PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment