Skip to content

Commit

Permalink
Tell subversion to expand the Id keyword:
Browse files Browse the repository at this point in the history
  - 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).
  • Loading branch information
philikon committed May 17, 2004
1 parent a16211e commit 18e8ec3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _MultiMapping.c
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion tests.py
Expand Up @@ -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
Expand Down

0 comments on commit 18e8ec3

Please sign in to comment.