[Zodb-checkins] SVN: ZODB/trunk/s add missing file and fix setup.py so the error would have been caught when I ran the tests before the previous checkin

Gary Poster gary at zope.com
Mon Feb 5 18:22:30 EST 2007


Log message for revision 72385:
  add missing file and fix setup.py so the error would have been caught when I ran the tests before the previous checkin

Changed:
  U   ZODB/trunk/setup.py
  A   ZODB/trunk/src/BTrees/fsBTree.py

-=-
Modified: ZODB/trunk/setup.py
===================================================================
--- ZODB/trunk/setup.py	2007-02-05 23:11:13 UTC (rev 72384)
+++ ZODB/trunk/setup.py	2007-02-05 23:22:29 UTC (rev 72385)
@@ -20,7 +20,7 @@
 interface, rich transaction support, and undo.
 """
 
-VERSION = "3.7.0b3"
+VERSION = "3.8.0a1"
 
 # The (non-obvious!) choices for the Trove Development Status line:
 # Development Status :: 5 - Production/Stable
@@ -83,6 +83,8 @@
     if flavor != "fs":
         kwargs["depends"] = (base_btrees_depends + [KEY_H % _flavors[key],
                                                     VALUE_H % _flavors[value]])
+    else:
+        kwargs["depends"] = base_btrees_depends
     if key != "O":
         kwargs["define_macros"] = [('EXCLUDE_INTSET_SUPPORT', None)]
     return Extension(name, sources, **kwargs)

Added: ZODB/trunk/src/BTrees/fsBTree.py
===================================================================
--- ZODB/trunk/src/BTrees/fsBTree.py	2007-02-05 23:11:13 UTC (rev 72384)
+++ ZODB/trunk/src/BTrees/fsBTree.py	2007-02-05 23:22:29 UTC (rev 72385)
@@ -0,0 +1,19 @@
+##############################################################################
+#
+# 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.1 (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
+#
+##############################################################################
+
+# fsBTrees are data structures used for ZODB FileStorage.  They are not
+# expected to be "public" excpect to FileStorage.
+
+# hack to overcome dynamic-linking headache.
+from _fsBTree import *



More information about the Zodb-checkins mailing list