Commit 2bae71ec authored by Tim Peters's avatar Tim Peters

Removed stale CVS $Id$ expansions; SVN should take over now.

parent ef6fcf19
......@@ -12,7 +12,7 @@
****************************************************************************/
#define BTREEITEMSTEMPLATE_C "$Id: BTreeItemsTemplate.c,v 1.20 2003/11/28 16:44:44 jim Exp $\n"
#define BTREEITEMSTEMPLATE_C "$Id$\n"
/* A BTreeItems struct is returned from calling .items(), .keys() or
* .values() on a BTree-based data structure, and is also the result of
......
......@@ -378,7 +378,7 @@ static char BTree_module_documentation[] =
"\n"
MASTER_ID
BTREEITEMSTEMPLATE_C
"$Id: BTreeModuleTemplate.c,v 1.40 2004/02/21 12:28:52 jim Exp $\n"
"$Id$\n"
BTREETEMPLATE_C
BUCKETTEMPLATE_C
KEYMACROS_H
......
......@@ -12,7 +12,7 @@
****************************************************************************/
#define BTREETEMPLATE_C "$Id: BTreeTemplate.c,v 1.75 2003/11/28 16:44:44 jim Exp $\n"
#define BTREETEMPLATE_C "$Id$\n"
/* Sanity-check a BTree. This is a private helper for BTree_check. Return:
* -1 Error. If it's an internal inconsistency in the BTree,
......
......@@ -12,7 +12,7 @@
****************************************************************************/
#define BUCKETTEMPLATE_C "$Id: BucketTemplate.c,v 1.55 2003/11/28 16:44:44 jim Exp $\n"
#define BUCKETTEMPLATE_C "$Id$\n"
/* Use BUCKET_SEARCH to find the index at which a key belongs.
* INDEX An int lvalue to hold the index i such that KEY belongs at
......
......@@ -12,7 +12,7 @@
****************************************************************************/
#define MERGETEMPLATE_C "$Id: MergeTemplate.c,v 1.17 2003/11/28 16:44:44 jim Exp $\n"
#define MERGETEMPLATE_C "$Id$\n"
/****************************************************************************
Set operations
......
......@@ -16,7 +16,7 @@
Set operations
****************************************************************************/
#define SETOPTEMPLATE_C "$Id: SetOpTemplate.c,v 1.30 2003/11/28 16:44:44 jim Exp $\n"
#define SETOPTEMPLATE_C "$Id$\n"
#ifdef KEY_CHECK
static int
......
......@@ -12,7 +12,7 @@
****************************************************************************/
#define SETTEMPLATE_C "$Id: SetTemplate.c,v 1.17 2003/11/28 16:44:44 jim Exp $\n"
#define SETTEMPLATE_C "$Id$\n"
static PyObject *
Set_insert(Bucket *self, PyObject *args)
......
......@@ -12,7 +12,7 @@
****************************************************************************/
#define TREESETTEMPLATE_C "$Id: TreeSetTemplate.c,v 1.16 2003/11/28 16:44:44 jim Exp $\n"
#define TREESETTEMPLATE_C "$Id$\n"
static PyObject *
TreeSet_insert(BTree *self, PyObject *args)
......
......@@ -12,7 +12,7 @@
#
############################################################################*/
#define MASTER_ID "$Id: _IIBTree.c,v 1.9 2004/05/03 18:45:52 spascoe Exp $\n"
#define MASTER_ID "$Id$\n"
/* IIBTree - int key, int value BTree
......
......@@ -12,7 +12,7 @@
#
############################################################################*/
#define MASTER_ID "$Id: _IOBTree.c,v 1.7 2004/05/03 18:45:52 spascoe Exp $\n"
#define MASTER_ID "$Id$\n"
/* IOBTree - int key, object value BTree
......
......@@ -12,7 +12,7 @@
#
############################################################################*/
#define MASTER_ID "$Id: _OIBTree.c,v 1.4 2004/05/03 18:45:52 spascoe Exp $\n"
#define MASTER_ID "$Id$\n"
/* OIBTree - object key, int value BTree
......
......@@ -12,7 +12,7 @@
#
############################################################################*/
#define MASTER_ID "$Id: _OOBTree.c,v 1.4 2004/05/03 18:45:52 spascoe Exp $\n"
#define MASTER_ID "$Id$\n"
/* OOBTree - object key, object value BTree
......
......@@ -12,7 +12,7 @@
#
############################################################################*/
#define MASTER_ID "$Id: _fsBTree.c,v 1.9 2004/05/01 01:15:45 spascoe Exp $\n"
#define MASTER_ID "$Id$\n"
/* fsBTree - FileStorage index BTree
......@@ -37,7 +37,7 @@ typedef unsigned char char6[6];
/*#include "intkeymacros.h"*/
#define KEYMACROS_H "$Id: _fsBTree.c,v 1.9 2004/05/01 01:15:45 spascoe Exp $\n"
#define KEYMACROS_H "$Id$\n"
#define KEY_TYPE char2
#undef KEY_TYPE_IS_PYOBJECT
#define KEY_CHECK(K) (PyString_Check(K) && PyString_GET_SIZE(K)==2)
......@@ -52,7 +52,7 @@ typedef unsigned char char6[6];
(STATUS)=0; }
/*#include "intvaluemacros.h"*/
#define VALUEMACROS_H "$Id: _fsBTree.c,v 1.9 2004/05/01 01:15:45 spascoe Exp $\n"
#define VALUEMACROS_H "$Id$\n"
#define VALUE_TYPE char6
#undef VALUE_TYPE_IS_PYOBJECT
#define TEST_VALUE(K, T) memcmp(K,T,6)
......
#define KEYMACROS_H "$Id: intkeymacros.h,v 1.10 2002/06/27 00:32:54 tim_one Exp $\n"
#define KEYMACROS_H "$Id$\n"
#define KEY_TYPE int
#undef KEY_TYPE_IS_PYOBJECT
......
#define VALUEMACROS_H "$Id: intvaluemacros.h,v 1.8 2002/06/27 00:32:54 tim_one Exp $\n"
#define VALUEMACROS_H "$Id$\n"
#define VALUE_TYPE int
#undef VALUE_TYPE_IS_PYOBJECT
......
#define KEYMACROS_H "$Id: objectkeymacros.h,v 1.4 2002/06/27 00:32:54 tim_one Exp $\n"
#define KEYMACROS_H "$Id$\n"
#define KEY_TYPE PyObject *
#define KEY_TYPE_IS_PYOBJECT
#define TEST_KEY_SET_OR(V, KEY, TARGET) if ( ( (V) = PyObject_Compare((KEY),(TARGET)) ), PyErr_Occurred() )
......
#define VALUEMACROS_H "$Id: objectvaluemacros.h,v 1.4 2002/06/27 00:32:54 tim_one Exp $\n"
#define VALUEMACROS_H "$Id$\n"
#define VALUE_TYPE PyObject *
#define VALUE_TYPE_IS_PYOBJECT
......
......@@ -12,7 +12,7 @@
****************************************************************************/
/* Revision information: $Id: sorters.c,v 1.5 2003/11/28 16:44:44 jim Exp $ */
/* Revision information: $Id$ */
/* The only routine here intended to be used outside the file is
size_t sort_int4_nodups(int *p, size_t n)
......
......@@ -14,7 +14,7 @@
static char _Persistence_module_documentation[] =
"Persistent ExtensionClass\n"
"\n"
"$Id: _Persistence.c,v 1.2 2003/11/28 16:44:46 jim Exp $\n"
"$Id$\n"
;
#include "ExtensionClass.h"
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Persistence and ExtensionClass combined
$Id: __init__.py,v 1.8 2003/12/29 22:40:45 tim_one Exp $
$Id$
"""
from persistent import PickleCache
......
......@@ -14,7 +14,7 @@
"""Python implementation of persistent base types
$Id: mapping.py,v 1.2 2003/12/29 22:40:45 tim_one Exp $"""
$Id$"""
import Persistence
import persistent
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Test ExtensionClass support in Persistence.Persistent
$Id: test_ExtensionClass.py,v 1.7 2004/04/19 21:19:03 tim_one Exp $
$Id$
"""
from doctest import DocTestSuite
......
......@@ -13,7 +13,7 @@
##############################################################################
"""XXX short summary goes here.
$Id: test_mapping.py,v 1.2 2003/12/29 22:40:46 tim_one Exp $
$Id$
"""
import unittest
from doctest import DocTestSuite
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Manage the asyncore mainloop in a multi-threaded app.
$Id: __init__.py,v 1.9 2004/02/27 10:27:37 philikon Exp $
$Id$
"""
from LoopCallback import register_loop_callback, loop, remove_loop_callback
......@@ -13,7 +13,7 @@
##############################################################################
"""Monitor behavior of ZEO server and record statistics.
$Id: monitor.py,v 1.6 2004/04/25 11:34:15 gintautasm Exp $
$Id$
"""
import asyncore
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Test that the monitor produce sensible results.
$Id: testMonitor.py,v 1.9 2004/02/27 00:31:52 faassen Exp $
$Id$
"""
import socket
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Handy standard storage machinery
$Id: BaseStorage.py,v 1.51 2004/04/23 17:30:40 gintautasm Exp $
$Id$
"""
import cPickle
import threading
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Database connection support
$Id: Connection.py,v 1.155 2004/04/23 17:26:37 gintautasm Exp $"""
$Id$"""
import logging
import sys
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Database objects
$Id: DB.py,v 1.79 2004/05/07 19:10:59 tim_one Exp $"""
$Id$"""
import cPickle, cStringIO, sys
from thread import allocate_lock
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Mounted database support
$Id: Mount.py,v 1.25 2004/04/23 17:26:37 gintautasm Exp $"""
$Id$"""
import string
import time
......
......@@ -13,7 +13,7 @@
##############################################################################
"""ZODB-defined exceptions
$Id: POSException.py,v 1.24 2004/04/16 19:07:00 tim_one Exp $"""
$Id$"""
from ZODB.utils import oid_repr, serial_repr
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Broken object support
$Id: broken.py,v 1.4 2004/04/19 21:19:05 tim_one Exp $
$Id$
"""
import sys
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Open database and storage from a configuration.
$Id: config.py,v 1.16 2004/03/08 22:36:17 tim_one Exp $"""
$Id$"""
import os
from cStringIO import StringIO
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Interfaces for ZODB.
$Id: interfaces.py,v 1.4 2004/04/19 21:19:05 tim_one Exp $
$Id$
"""
try:
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Sample objects for use in tests
$Id: sampledm.py,v 1.3 2004/04/19 21:19:07 tim_one Exp $
$Id$
"""
class DataManager(object):
......
......@@ -15,7 +15,7 @@
See ZODB/ActivityMonitor.py
$Id: testActivityMonitor.py,v 1.3 2002/08/14 22:07:09 mj Exp $
$Id$
"""
import unittest
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Test broken-object suppport
$Id: testBroken.py,v 1.5 2004/04/19 21:19:07 tim_one Exp $
$Id$
"""
import sys
......
......@@ -13,7 +13,7 @@
##############################################################################
"""XXX short summary goes here.
$Id: test_datamanageradapter.py,v 1.4 2004/04/05 18:48:22 tim_one Exp $
$Id$
"""
import unittest
from doctest import DocTestSuite
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Conventience function for creating test databases
$Id: util.py,v 1.5 2004/04/19 21:19:07 tim_one Exp $
$Id$
"""
import time
......
......@@ -14,7 +14,7 @@
static char winlock_doc_string[] =
"Lock files on Windows."
"\n"
"$Id: winlock.c,v 1.9 2003/02/28 20:37:59 tim_one Exp $\n";
"$Id$\n";
#include "Python.h"
......
......@@ -26,7 +26,7 @@ the public APIs of the database.
The IDatabase, IConnection, and ITransactionAttrs interfaces describe
private APIs used by the implementation.
$Id: z4interfaces.py,v 1.3 2004/04/19 21:19:09 tim_one Exp $
$Id$
"""
from ZODB.zodb4 import z4utils
......
......@@ -21,7 +21,7 @@ PyObject *TimeStamp_FromString(const char *);
static char TimeStampModule_doc[] =
"A 64-bit TimeStamp used as a ZODB serial number.\n"
"\n"
"$Id: TimeStamp.c,v 1.5 2004/05/03 20:17:57 spascoe Exp $\n";
"$Id$\n";
typedef struct {
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Provide access to Persistent and PersistentMapping.
$Id: __init__.py,v 1.8 2004/02/24 13:54:05 srichter Exp $
$Id$
"""
from cPersistence import Persistent, GHOST, UPTODATE, CHANGED, STICKY
......
......@@ -14,7 +14,7 @@
static char cPersistence_doc_string[] =
"Defines Persistent mixin class for persistent objects.\n"
"\n"
"$Id: cPersistence.c,v 1.80 2004/03/13 07:42:06 jeremy Exp $\n";
"$Id$\n";
#include "cPersistence.h"
#include "structmember.h"
......
......@@ -90,7 +90,7 @@ process must skip such objects, rather than deactivating them.
static char cPickleCache_doc_string[] =
"Defines the PickleCache used by ZODB Connection objects.\n"
"\n"
"$Id: cPickleCache.c,v 1.92 2004/03/13 07:48:12 jeremy Exp $\n";
"$Id$\n";
#define DONT_USE_CPERSISTENCECAPI
#include "cPersistence.h"
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Python implementation of persistent container type
$Id: dict.py,v 1.2 2004/02/19 02:59:30 jeremy Exp $
$Id$
"""
import persistent
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Persistence Interfaces
$Id: interfaces.py,v 1.4 2004/04/19 21:19:09 tim_one Exp $
$Id$
"""
try:
from zope.interface import Interface
......
......@@ -14,7 +14,7 @@
"""Python implementation of persistent list.
$Id: list.py,v 1.7 2004/02/19 18:13:35 jeremy Exp $"""
$Id$"""
import persistent
from UserList import UserList
......
......@@ -14,7 +14,7 @@
"""Python implementation of persistent base types
$Id: mapping.py,v 1.22 2003/11/28 16:44:55 jim Exp $"""
$Id$"""
import persistent
from UserDict import UserDict
......
......@@ -12,7 +12,7 @@
****************************************************************************/
#define RING_C "$Id: ring.c,v 1.3 2004/05/03 20:15:45 spascoe Exp $\n"
#define RING_C "$Id$\n"
/* Support routines for the doubly-linked list of cached objects.
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Unit tests for PickleCache
$Id: test_PickleCache.py,v 1.2 2004/02/19 02:59:32 jeremy Exp $
$Id$
"""
class DummyConnection:
......
......@@ -16,7 +16,7 @@
This module tests and documents, through example, overriding attribute
access methods.
$Id: test_overriding_attrs.py,v 1.7 2004/04/19 21:19:10 tim_one Exp $
$Id$
"""
from persistent import Persistent
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Basic pickling tests
$Id: test_pickle.py,v 1.6 2004/04/19 21:19:10 tim_one Exp $
$Id$
"""
from persistent import Persistent
......
......@@ -13,7 +13,7 @@
##############################################################################
"""XXX short summary goes here.
$Id: test_wref.py,v 1.2 2004/02/19 02:59:32 jeremy Exp $
$Id$
"""
import unittest
from doctest import DocTestSuite
......
......@@ -13,7 +13,7 @@
##############################################################################
"""ZODB-based persistent weakrefs
$Id: wref.py,v 1.3 2004/04/19 21:19:09 tim_one Exp $
$Id$
"""
from persistent import Persistent
......
......@@ -141,7 +141,7 @@ Commands:
- wall time to verify
- average miliseconds to verify per object.
$Id: zeoserverlog.py,v 1.5 2004/03/18 13:27:49 yuppie Exp $
$Id$
"""
import datetime, sys, re, os
......
......@@ -89,7 +89,7 @@ Usage: loadmail2 [options]
Specify the mailbox for getting input data.
$Id: zodbload.py,v 1.7 2004/04/16 16:00:56 jeremy Exp $
$Id$
"""
import mailbox
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Transaction Interfaces
$Id: interfaces.py,v 1.8 2004/04/19 21:19:10 tim_one Exp $
$Id$
"""
try:
from zope.interface import Interface
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Sample objects for use in tests
$Id: test_SampleDataManager.py,v 1.3 2004/04/19 21:19:11 tim_one Exp $
$Id$
"""
class DataManager(object):
......
......@@ -36,7 +36,7 @@ TODO
add in tests for objects which are modified multiple times,
for example an object that gets modified in multiple sub txns.
$Id: test_transaction.py,v 1.2 2004/04/16 15:58:10 jeremy Exp $
$Id$
"""
import unittest
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Test transaction utilities
$Id: test_util.py,v 1.2 2004/02/20 16:56:58 fdrake Exp $
$Id$
"""
import unittest
from doctest import DocTestSuite
......
......@@ -13,7 +13,7 @@
##############################################################################
"""Utility classes or functions
$Id: util.py,v 1.3 2004/04/19 21:19:10 tim_one Exp $
$Id$
"""
from transaction.interfaces import IRollback
......
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