[Zodb-checkins] SVN: ZODB/branches/3.3/ Empty BTrees/__init__.py;
isn't doing anything except
Tim Peters
tim.one at comcast.net
Wed Aug 25 16:41:34 EDT 2004
Log message for revision 27272:
Empty BTrees/__init__.py; isn't doing anything except
creating problems.
Changed:
U ZODB/branches/3.3/NEWS.txt
U ZODB/branches/3.3/src/BTrees/__init__.py
-=-
Modified: ZODB/branches/3.3/NEWS.txt
===================================================================
--- ZODB/branches/3.3/NEWS.txt 2004-08-25 19:49:59 UTC (rev 27271)
+++ ZODB/branches/3.3/NEWS.txt 2004-08-25 20:41:34 UTC (rev 27272)
@@ -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/branches/3.3/src/BTrees/__init__.py
===================================================================
--- ZODB/branches/3.3/src/BTrees/__init__.py 2004-08-25 19:49:59 UTC (rev 27271)
+++ ZODB/branches/3.3/src/BTrees/__init__.py 2004-08-25 20:41:34 UTC (rev 27272)
@@ -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