paulross/skiplist

Python skip list of long does not perform a bounds check.

Closed this issue · 1 comments

Python longs are mapped to C long long and the cSkipList module provides bounds for the implementation size with min_long() and max_long(). However PySkipList<long> does not check that values are within bounds. It should raise an OverfowError on insert() and remove().