You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't tell whether those places are performance-critical but if they are, consider using the sortedcontainers module in place of blist. SortedContainers is a pure-Python implementation of SortedList, SortedDict, and SortedSet types. The SortedDict implementation is actually faster than the one in blist and the API is the same.
If you're interested, I'm happy to submit a pull request. Let me know.
The text was updated successfully, but these errors were encountered:
Hi! Thanks a lot for your remarks.. Unfortunately I have stopped to work on
the project but you may add an issue or provide a patch so if there is a
person interested in the project he could take it into account.
With best regards,
Anton Kolotaev
15.09.2015 19:29 пользователь "Grant Jenks" [email protected]
написал:
Hi, I noticed you're using the sorteddict implementation from the blist
module in a few places:
I can't tell whether those places are performance-critical but if they
are, consider using the sortedcontainers module in place of blist.
SortedContainers is a pure-Python implementation of SortedList, SortedDict,
and SortedSet types. The SortedDict implementation is actually faster than
the one in blist and the API is the same.
If you're interested, I'm happy to submit a pull request. Let me know.
—
Reply to this email directly or view it on GitHub #25.
Hi, I noticed you're using the
sorteddict
implementation from theblist
module in a few places:I can't tell whether those places are performance-critical but if they are, consider using the
sortedcontainers
module in place ofblist
. SortedContainers is a pure-Python implementation of SortedList, SortedDict, and SortedSet types. The SortedDict implementation is actually faster than the one inblist
and the API is the same.If you're interested, I'm happy to submit a pull request. Let me know.
The text was updated successfully, but these errors were encountered: