summaryrefslogtreecommitdiff
path: root/blist/__init__.py
blob: 931aaacbb2a9c79555d3d70cac293ca6cc123753 (plain)
1
2
3
4
5
6
7
8
9
10
__version__ = '1.3.6'
from blist._blist import *
import collections
if hasattr(collections, 'MutableSet'): # Only supported in Python 2.6+
    from blist._sortedlist import sortedlist, sortedset, weaksortedlist, weaksortedset
    from blist._sorteddict import sorteddict
    from blist._btuple import btuple
    collections.MutableSequence.register(blist)
    del _sortedlist, _sorteddict, _btuple
del collections