[Zodb-checkins] SVN: ZODB/trunk/ Port rev 27272 from 3.3 branch.

Tim Peters tim.one at comcast.net
Wed Aug 25 16:42:43 EDT 2004


Log message for revision 27273:
  Port rev 27272 from 3.3 branch.
  
  Empty BTrees/__init__.py; isn't doing anything except
  creating problems.
  


Changed:
  U   ZODB/trunk/NEWS.txt
  U   ZODB/trunk/src/BTrees/__init__.py


-=-
Modified: ZODB/trunk/NEWS.txt
===================================================================
--- ZODB/trunk/NEWS.txt	2004-08-25 20:41:34 UTC (rev 27272)
+++ ZODB/trunk/NEWS.txt	2004-08-25 20:42:43 UTC (rev 27273)
@@ -2,6 +2,15 @@
 =========================
 Release date: DD-MMM-YYYY
 
+BTrees
+------
+
+The BTrees __init__.py file is now just a comment.  It had been trying
+to set up support for (long gone) "int sets", and to import an old
+version of Zope's Interface package, which doesn't even ship with ZODB.
+The latter in particular created problems, at least clashing with
+PythonCAD's Interface package.
+
 Tools
 -----
 

Modified: ZODB/trunk/src/BTrees/__init__.py
===================================================================
--- ZODB/trunk/src/BTrees/__init__.py	2004-08-25 20:41:34 UTC (rev 27272)
+++ ZODB/trunk/src/BTrees/__init__.py	2004-08-25 20:42:43 UTC (rev 27273)
@@ -1,16 +1 @@
-try:
-    import intSet
-except:
-    pass
-else:
-    del intSet
-
-# Register interfaces
-try:
-    import Interface
-except ImportError:
-    pass # Don't register interfaces if no scarecrow
-else:
-    import Interfaces
-    del Interfaces
-    del Interface
+# This is a Python package.



More information about the Zodb-checkins mailing list