diff options
author | Erik Johnston <erik@matrix.org> | 2021-09-03 18:23:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-03 18:23:46 +0100 |
commit | 92b6ac31b22fd2fafc5a68602357212fd87b0607 (patch) | |
tree | 0c81066ed9ecd6d390bfefb291f4d7b45848fdde /stubs/sortedcontainers/__init__.pyi | |
parent | Add a partial index to `presence_stream` to speed up startups (#10748) (diff) | |
download | synapse-92b6ac31b22fd2fafc5a68602357212fd87b0607.tar.xz |
Speed up MultiWriterIdGenerator when lots of IDs are in flight. (#10755)
Diffstat (limited to 'stubs/sortedcontainers/__init__.pyi')
-rw-r--r-- | stubs/sortedcontainers/__init__.pyi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stubs/sortedcontainers/__init__.pyi b/stubs/sortedcontainers/__init__.pyi index fa307483fe..0602a4fa90 100644 --- a/stubs/sortedcontainers/__init__.pyi +++ b/stubs/sortedcontainers/__init__.pyi @@ -1,5 +1,6 @@ from .sorteddict import SortedDict, SortedItemsView, SortedKeysView, SortedValuesView from .sortedlist import SortedKeyList, SortedList, SortedListWithKey +from .sortedset import SortedSet __all__ = [ "SortedDict", @@ -9,4 +10,5 @@ __all__ = [ "SortedKeyList", "SortedList", "SortedListWithKey", + "SortedSet", ] |