[Zodb-checkins] CVS: Zope3/lib/python/Persistence/BTrees - Exception.py:1.1.2.1.10.1 IIBTree.py:1.1.2.2.10.1 IOBTree.py:1.1.2.2.10.1 Interfaces.py:1.1.2.1.10.1 Length.py:1.1.2.1.10.1 OIBTree.py:1.1.2.2.10.1 OOBTree.py:1.1.2.2.10.1 __init__.py:1.1.2.1.10.1 convert.py:1.1.2.1.10.1

Gary Poster garyposter@earthlink.net
Tue, 2 Apr 2002 21:02:52 -0500


Update of /cvs-repository/Zope3/lib/python/Persistence/BTrees
In directory cvs.zope.org:/tmp/cvs-serv22457/lib/python/Persistence/BTrees

Modified Files:
      Tag: gary-pre_create_views-branch
	Exception.py IIBTree.py IOBTree.py Interfaces.py Length.py 
	OIBTree.py OOBTree.py __init__.py convert.py 
Log Message:
license check; merge with current Zope-3x branch; small updates


=== Zope3/lib/python/Persistence/BTrees/Exception.py 1.1.2.1 => 1.1.2.1.10.1 ===
+#
+# Copyright (c) 2001, 2002 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.
+# 
+##############################################################################
 from Transaction.Exceptions import ConflictError
 
 class BTreesConflictError(ConflictError):


=== Zope3/lib/python/Persistence/BTrees/IIBTree.py 1.1.2.2 => 1.1.2.2.10.1 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
-# hack to overcome dynamic-linking headache.
 from _IIBTree import *


=== Zope3/lib/python/Persistence/BTrees/IOBTree.py 1.1.2.2 => 1.1.2.2.10.1 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
-# hack to overcome dynamic-linking headache.
 from _IOBTree import *


=== Zope3/lib/python/Persistence/BTrees/Interfaces.py 1.1.2.1 => 1.1.2.1.10.1 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
 import OOBTree, Interface, Interface.Standard
 
 class ICollection(Interface.Base):


=== Zope3/lib/python/Persistence/BTrees/Length.py 1.1.2.1 => 1.1.2.1.10.1 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
 import Persistence
 
 class Length(Persistence.Persistent):


=== Zope3/lib/python/Persistence/BTrees/OIBTree.py 1.1.2.2 => 1.1.2.2.10.1 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
-# hack to overcome dynamic-linking headache.
 from _OIBTree import *


=== Zope3/lib/python/Persistence/BTrees/OOBTree.py 1.1.2.2 => 1.1.2.2.10.1 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
-# hack to overcome dynamic-linking headache.
 from _OOBTree import *


=== Zope3/lib/python/Persistence/BTrees/__init__.py 1.1.2.1 => 1.1.2.1.10.1 ===
+#
+# Copyright (c) 2001, 2002 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.
+# 
+##############################################################################
 ##import ZODB
 
 ##try: import intSet


=== Zope3/lib/python/Persistence/BTrees/convert.py 1.1.2.1 => 1.1.2.1.10.1 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
 def convert(old, new, threshold=200, f=None, None=None):
     "Utility for converting old btree to new"
     n=0