Advertisement
Guest User

Untitled

a guest
Jun 5th, 2014
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. try:
  2.     from blist import sortedset
  3. except ImportError:
  4.     warnings.warn(
  5.         "The blist library is not available, so a normal set will "
  6.         "be used in place of blist.sortedset for set collection values. "
  7.         "You can find the blist library here: https://pypi.python.org/pypi/blist/")
  8.  
  9.     sortedset = set
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement