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