[Zope-Checkins] CVS: Zope/lib/Components/cPickle - cPickle.c:1.73.122.1

Casey Duncan casey@zope.com
Wed, 27 Mar 2002 15:52:05 -0500


Update of /cvs-repository/Zope/lib/Components/cPickle
In directory cvs.zope.org:/tmp/cvs-serv22094/lib/Components/cPickle

Modified Files:
      Tag: casey-death_to_index_html-branch
	cPickle.c 
Log Message:
Updating branch to head for testing


=== Zope/lib/Components/cPickle/cPickle.c 1.73 => 1.73.122.1 ===
 DL_EXPORT(void)
 initcPickle() {
-    PyObject *m, *d, *v;
-    char *rev="$Revision$";
+    PyObject *m, *d;
     PyObject *format_version;
     PyObject *compatible_formats;
 
@@ -4420,8 +4419,6 @@
 
     /* Add some symbolic constants to the module */
     d = PyModule_GetDict(m);
-    PyDict_SetItemString(d,"__version__", v = PyString_FromString(rev));
-    Py_XDECREF(v);
 
     format_version = PyString_FromString("1.3");
     compatible_formats = Py_BuildValue("[sss]", "1.0", "1.1", "1.2");