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 Acquisition Wrappers -- Implementation of acquisition through wrappers
...@@ -59,6 +59,9 @@ ...@@ -59,6 +59,9 @@
Full description Full description
$Log: Acquisition.c,v $ $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 Revision 1.6 1997/06/19 19:31:39 jim
Added ident string. Added ident string.
...@@ -715,7 +718,7 @@ void ...@@ -715,7 +718,7 @@ void
initAcquisition() initAcquisition()
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.6 $"; char *rev="$Revision: 1.7 $";
PURE_MIXIN_CLASS(Acquirer, PURE_MIXIN_CLASS(Acquirer,
"Base class for objects that implicitly" "Base class for objects that implicitly"
" acquire attributes from containers\n" " acquire attributes from containers\n"
...@@ -730,7 +733,7 @@ initAcquisition() ...@@ -730,7 +733,7 @@ initAcquisition()
/* Create the module and add the functions */ /* Create the module and add the functions */
m = Py_InitModule4("Acquisition", methods, m = Py_InitModule4("Acquisition", methods,
"Provide base classes for acquiring objects\n\n" "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); (PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m); d = PyModule_GetDict(m);
......
...@@ -21,7 +21,7 @@ void ...@@ -21,7 +21,7 @@ void
initMethodObject() initMethodObject()
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.3 $"; char *rev="$Revision: 1.4 $";
PURE_MIXIN_CLASS(Method, PURE_MIXIN_CLASS(Method,
"Base class for objects that want to be treated as methods\n" "Base class for objects that want to be treated as methods\n"
"\n" "\n"
...@@ -36,8 +36,8 @@ initMethodObject() ...@@ -36,8 +36,8 @@ initMethodObject()
/* Create the module and add the functions */ /* Create the module and add the functions */
m = Py_InitModule4("MethodObject", methods, m = Py_InitModule4("MethodObject", methods,
"Method-object mix-in class module\n\n", "Method-object mix-in class module\n\n"
"$Id: MethodObject.c,v 1.3 1997/06/19 19:34:23 jim Exp $\n", "$Id: MethodObject.c,v 1.4 1997/06/19 19:34:41 jim Exp $\n",
(PyObject*)NULL,PYTHON_API_VERSION); (PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m); 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 Acquisition Wrappers -- Implementation of acquisition through wrappers
...@@ -59,6 +59,9 @@ ...@@ -59,6 +59,9 @@
Full description Full description
$Log: Acquisition.c,v $ $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 Revision 1.6 1997/06/19 19:31:39 jim
Added ident string. Added ident string.
...@@ -715,7 +718,7 @@ void ...@@ -715,7 +718,7 @@ void
initAcquisition() initAcquisition()
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.6 $"; char *rev="$Revision: 1.7 $";
PURE_MIXIN_CLASS(Acquirer, PURE_MIXIN_CLASS(Acquirer,
"Base class for objects that implicitly" "Base class for objects that implicitly"
" acquire attributes from containers\n" " acquire attributes from containers\n"
...@@ -730,7 +733,7 @@ initAcquisition() ...@@ -730,7 +733,7 @@ initAcquisition()
/* Create the module and add the functions */ /* Create the module and add the functions */
m = Py_InitModule4("Acquisition", methods, m = Py_InitModule4("Acquisition", methods,
"Provide base classes for acquiring objects\n\n" "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); (PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m); d = PyModule_GetDict(m);
......
...@@ -21,7 +21,7 @@ void ...@@ -21,7 +21,7 @@ void
initMethodObject() initMethodObject()
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.3 $"; char *rev="$Revision: 1.4 $";
PURE_MIXIN_CLASS(Method, PURE_MIXIN_CLASS(Method,
"Base class for objects that want to be treated as methods\n" "Base class for objects that want to be treated as methods\n"
"\n" "\n"
...@@ -36,8 +36,8 @@ initMethodObject() ...@@ -36,8 +36,8 @@ initMethodObject()
/* Create the module and add the functions */ /* Create the module and add the functions */
m = Py_InitModule4("MethodObject", methods, m = Py_InitModule4("MethodObject", methods,
"Method-object mix-in class module\n\n", "Method-object mix-in class module\n\n"
"$Id: MethodObject.c,v 1.3 1997/06/19 19:34:23 jim Exp $\n", "$Id: MethodObject.c,v 1.4 1997/06/19 19:34:41 jim Exp $\n",
(PyObject*)NULL,PYTHON_API_VERSION); (PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m); 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