File: blist.py

package info (click to toggle)
blist 1.3.4-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 716 kB
  • sloc: python: 6,679; ansic: 6,192; makefile: 8
file content (8 lines) | stat: -rw-r--r-- 326 bytes parent folder | download
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