Commit 440f71a8 authored by Jim Fulton's avatar Jim Fulton

Added ident string.

parent 8c290b40
/* /*
$Id: MultiMapping.c,v 1.3 1997/02/17 16:34:09 jim Exp $ $Id: MultiMapping.c,v 1.4 1997/06/19 19:36:22 jim Exp $
Sample extension class program that implements multi-mapping objects. Sample extension class program that implements multi-mapping objects.
...@@ -219,10 +219,11 @@ void ...@@ -219,10 +219,11 @@ void
initMultiMapping() initMultiMapping()
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.3 $"; char *rev="$Revision: 1.4 $";
m = Py_InitModule4("MultiMapping", MultiMapping_methods, m = Py_InitModule4("MultiMapping", MultiMapping_methods,
"MultiMapping -- Wrap multiple mapping objects for lookup", "MultiMapping -- Wrap multiple mapping objects for lookup"
"\n\n$Id: MultiMapping.c,v 1.4 1997/06/19 19:36:22 jim Exp $\n",
(PyObject*)NULL,PYTHON_API_VERSION); (PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m); d = PyModule_GetDict(m);
PyExtensionClass_Export(d,"MultiMapping",MMtype); PyExtensionClass_Export(d,"MultiMapping",MMtype);
...@@ -236,6 +237,9 @@ initMultiMapping() ...@@ -236,6 +237,9 @@ initMultiMapping()
/***************************************************************************** /*****************************************************************************
$Log: MultiMapping.c,v $ $Log: MultiMapping.c,v $
Revision 1.4 1997/06/19 19:36:22 jim
Added ident string.
Revision 1.3 1997/02/17 16:34:09 jim Revision 1.3 1997/02/17 16:34:09 jim
Made changes to be more useful for DocumentTemplates. Made changes to be more useful for DocumentTemplates.
......
/* /*
$Id: MultiMapping.c,v 1.3 1997/02/17 16:34:09 jim Exp $ $Id: MultiMapping.c,v 1.4 1997/06/19 19:36:22 jim Exp $
Sample extension class program that implements multi-mapping objects. Sample extension class program that implements multi-mapping objects.
...@@ -219,10 +219,11 @@ void ...@@ -219,10 +219,11 @@ void
initMultiMapping() initMultiMapping()
{ {
PyObject *m, *d; PyObject *m, *d;
char *rev="$Revision: 1.3 $"; char *rev="$Revision: 1.4 $";
m = Py_InitModule4("MultiMapping", MultiMapping_methods, m = Py_InitModule4("MultiMapping", MultiMapping_methods,
"MultiMapping -- Wrap multiple mapping objects for lookup", "MultiMapping -- Wrap multiple mapping objects for lookup"
"\n\n$Id: MultiMapping.c,v 1.4 1997/06/19 19:36:22 jim Exp $\n",
(PyObject*)NULL,PYTHON_API_VERSION); (PyObject*)NULL,PYTHON_API_VERSION);
d = PyModule_GetDict(m); d = PyModule_GetDict(m);
PyExtensionClass_Export(d,"MultiMapping",MMtype); PyExtensionClass_Export(d,"MultiMapping",MMtype);
...@@ -236,6 +237,9 @@ initMultiMapping() ...@@ -236,6 +237,9 @@ initMultiMapping()
/***************************************************************************** /*****************************************************************************
$Log: MultiMapping.c,v $ $Log: MultiMapping.c,v $
Revision 1.4 1997/06/19 19:36:22 jim
Added ident string.
Revision 1.3 1997/02/17 16:34:09 jim Revision 1.3 1997/02/17 16:34:09 jim
Made changes to be more useful for DocumentTemplates. Made changes to be more useful for DocumentTemplates.
......
...@@ -536,7 +536,13 @@ static struct PyMethodDef WordSequence_module_methods[] = { ...@@ -536,7 +536,13 @@ static struct PyMethodDef WordSequence_module_methods[] = {
{ NULL, NULL } { NULL, NULL }
}; };
static char WordSequence_module_documentation[] = ""; static char WordSequence_module_documentation[] =
"Parse source strings into sequences of words\n"
"\n"
"for use in an inverted index\n"
"\n"
"$Id: WordSequence.c,v 1.5 1997/06/19 19:38:48 jim Exp $\n"
;
void void
initWordSequence() initWordSequence()
......
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