Remove warning on missing blist

Warning is not required, especially since benchmarks show the pure
Python impl is faster for most core use cases.
This commit is contained in:
Adam Holmberg
2015-06-08 08:54:09 -05:00
parent be0333626b
commit b48944ec61

View File

@@ -480,13 +480,6 @@ try:
from blist import sortedset
except ImportError:
import warnings
warnings.warn(
"The blist library is not available, so a pure python list-based set will "
"be used in place of blist.sortedset for set collection values. "
"You can find the blist library here: https://pypi.python.org/pypi/blist/")
from bisect import bisect_left
class sortedset(object):