From 18e8ec3e7c43fc8fbd47fb7de79982299d490daf Mon Sep 17 00:00:00 2001 From: Philipp von Weitershausen Date: Mon, 17 May 2004 05:59:28 +0000 Subject: [PATCH] Tell subversion to expand the Id keyword: - replaced old CVS expansion with a clean $Id$ - set the svn:keywords property to "Id" When you check-in files in the future and want $Id$ to be expanded, make sure it reads "$Id$" in that file; then set svn:keywords to "Id". ZODB, ZEO, Persistence and similar packages were not modified since they are really maintained elsewhere. Right now, we use a copy of them in our Zope/Zope3 trees. We should go back to the module sharing (using svn:externals). --- _MultiMapping.c | 2 +- tests.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_MultiMapping.c b/_MultiMapping.c index 41f567c..b737cba 100644 --- a/_MultiMapping.c +++ b/_MultiMapping.c @@ -206,7 +206,7 @@ init_MultiMapping(void) "_MultiMapping", MultiMapping_methods, "MultiMapping -- Wrap multiple mapping objects for lookup" "\n\n" - "$Id: _MultiMapping.c,v 1.2 2003/11/28 16:45:14 jim Exp $\n", + "$Id$\n", (PyObject*)NULL,PYTHON_API_VERSION); d = PyModule_GetDict(m); PyExtensionClass_Export(d,"MultiMapping",MMtype); diff --git a/tests.py b/tests.py index 311e26d..62ce24a 100644 --- a/tests.py +++ b/tests.py @@ -47,7 +47,7 @@ ... except: # I should probably raise a specific error in this case. ... pass -$Id: tests.py,v 1.2 2003/11/28 16:45:14 jim Exp $ +$Id$ """ import unittest from doctest import DocTestSuite