[Zope3-checkins] CVS: Zope3/src/BTrees - _IIBTree.c:1.9
_IOBTree.c:1.7 _OIBTree.c:1.4 _OOBTree.c:1.4
Scott Pascoe
manager at planneditsolutions.com
Mon May 3 14:45:56 EDT 2004
Update of /cvs-repository/Zope3/src/BTrees
In directory cvs.zope.org:/tmp/cvs-serv11100/src/BTrees
Modified Files:
_IIBTree.c _IOBTree.c _OIBTree.c _OOBTree.c
Log Message:
Spring Cleaning, Add ZPL and module comment
=== Zope3/src/BTrees/_IIBTree.c 1.8 => 1.9 ===
--- Zope3/src/BTrees/_IIBTree.c:1.8 Fri Nov 28 11:44:44 2003
+++ Zope3/src/BTrees/_IIBTree.c Mon May 3 14:45:52 2004
@@ -1,6 +1,26 @@
-/* Setup template macros */
+/*############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+############################################################################*/
#define MASTER_ID "$Id$\n"
+
+/* IIBTree - int key, int value BTree
+
+ Implements a collection using int type keys
+ and int type values
+*/
+
+/* Setup template macros */
#define PERSISTENT
=== Zope3/src/BTrees/_IOBTree.c 1.6 => 1.7 ===
--- Zope3/src/BTrees/_IOBTree.c:1.6 Fri Nov 28 11:44:44 2003
+++ Zope3/src/BTrees/_IOBTree.c Mon May 3 14:45:52 2004
@@ -1,5 +1,24 @@
+/*############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+############################################################################*/
#define MASTER_ID "$Id$\n"
+
+/* IOBTree - int key, object value BTree
+
+ Implements a collection using int type keys
+ and object type values
+*/
#define PERSISTENT
=== Zope3/src/BTrees/_OIBTree.c 1.3 => 1.4 ===
--- Zope3/src/BTrees/_OIBTree.c:1.3 Fri Nov 28 11:44:44 2003
+++ Zope3/src/BTrees/_OIBTree.c Mon May 3 14:45:52 2004
@@ -1,5 +1,24 @@
+/*############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+############################################################################*/
#define MASTER_ID "$Id$\n"
+
+/* OIBTree - object key, int value BTree
+
+ Implements a collection using object type keys
+ and int type values
+*/
#define PERSISTENT
=== Zope3/src/BTrees/_OOBTree.c 1.3 => 1.4 ===
--- Zope3/src/BTrees/_OOBTree.c:1.3 Fri Nov 28 11:44:44 2003
+++ Zope3/src/BTrees/_OOBTree.c Mon May 3 14:45:52 2004
@@ -1,5 +1,24 @@
+/*############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+############################################################################*/
#define MASTER_ID "$Id$\n"
+
+/* OOBTree - object key, object value BTree
+
+ Implements a collection using object type keys
+ and object type values
+*/
#define PERSISTENT
More information about the Zope3-Checkins
mailing list