Commit d96aa7ea authored by Jim Fulton's avatar Jim Fulton

Added ident string.

parent 18fe52fe
/*
$Id: cPickle.c,v 1.39 1997/06/13 19:40:44 jim Exp $
$Id: cPickle.c,v 1.40 1997/06/19 18:57:36 jim Exp $
Copyright
......@@ -53,7 +53,9 @@
*/
static char cPickle_module_documentation[] =
""
"C implementation and optimization of the Python pickle module\n"
"\n"
"$Id: cPickle.c,v 1.40 1997/06/19 18:57:36 jim Exp $\n"
;
#include "Python.h"
......@@ -3871,7 +3873,7 @@ init_stuff(PyObject *module, PyObject *module_dict) {
void
initcPickle() {
PyObject *m, *d;
char *rev="$Revision: 1.39 $";
char *rev="$Revision: 1.40 $";
PyObject *format_version;
PyObject *compatible_formats;
......@@ -3906,6 +3908,9 @@ initcPickle() {
/****************************************************************************
$Log: cPickle.c,v $
Revision 1.40 1997/06/19 18:57:36 jim
Added ident string.
Revision 1.39 1997/06/13 19:40:44 jim
- Various changes to make gcc -Wall -pedantic happy, including
extra parens elimination of unused vars.
......
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