python-sortedcontainers
python-sortedcontainers copied to clipboard
Python Sorted Container Types: Sorted List, Sorted Dict, and Sorted Set
Range key deletion feature is currently missing for ```SortedDict```. If I want to delete multiple keys within an range, I have to do them one by one using a for...
This would help people who'd like to use sortedcontainers in a project with mypy type checking. https://github.com/python/mypy/wiki/Creating-Stubs-For-Python-Modules
Hi Grant, I've been using your library for some time and I have a few suggestions: 1. `SortedList.bisect_*()` returns insertion indexes for elements in the sorted list. However, `SortedList.insert()` is...
Hi, I am looking at using a sorted dict implementation and I have noticed that the `copy()` function of `SortedDict` was somewhat "slow", especially compared with other implementations. Here's the...
Goals: - [ ] Replace Travis CI with GitHub Actions - [ ] Replace AppVeyor with GitHub Actions - [ ] Drop Python 2 support - [ ] Drop Python...
Hi folks! And thank you for you great project. Don't you have any plans to support type hints for your library? We use `mypy`, and it can be very useful...
Idea: create a GitHub action to automatically test the projects that depend on Sorted Containers. Start with testing Sorted Collections as part of CI process.
Since I really appreciate how clean and well-maintained this repository is, I figured I'd do a quick sweep through to help modernize the build system. The changes are explained in...
Hi, I really love this repo and have to submit this pull request!! static typing in python is really a thing now. Modern IDE does static analysis with type hints...