summary refs log tree commit diff
path: root/stubs
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2020-05-04 16:33:56 +0200
committerBrendan Abolivier <babolivier@matrix.org>2020-05-04 16:33:56 +0200
commit15aa09bbe661eca31c7dc326703098c2c74e7a7a (patch)
tree86955d167a59b0a55b6a9ebad821031d6e9cc0e5 /stubs
parentConvert the room handler to async/await. (#7396) (diff)
parentFix ordering in MANIFEST.in (diff)
downloadsynapse-15aa09bbe661eca31c7dc326703098c2c74e7a7a.tar.xz
Merge branch 'release-v1.13.0' into develop
Diffstat (limited to 'stubs')
-rw-r--r--stubs/txredisapi.pyi3
1 files changed, 3 insertions, 0 deletions
diff --git a/stubs/txredisapi.pyi b/stubs/txredisapi.pyi
index 763d3fb404..cac689d4f3 100644
--- a/stubs/txredisapi.pyi
+++ b/stubs/txredisapi.pyi
@@ -22,7 +22,10 @@ class RedisProtocol:
     def publish(self, channel: str, message: bytes): ...
 
 class SubscriberProtocol:
+    password: Optional[str]
     def subscribe(self, channels: Union[str, List[str]]): ...
+    def connectionMade(self): ...
+    def connectionLost(self, reason): ...
 
 def lazyConnection(
     host: str = ...,