Commit bc6751ac authored by Tim Peters's avatar Tim Peters

Port rev 27272 from 3.3 branch.

Empty BTrees/__init__.py; isn't doing anything except
creating problems.
parent 6036f96a
......@@ -2,6 +2,15 @@ What's new in ZODB3 3.3 ?
=========================
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
-----
......
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.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment