mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-04 08:44:58 -04:00
More types for synapse.util, part 1 (#10888)
The following modules now pass `disallow_untyped_defs`: * synapse.util.caches.cached_call * synapse.util.caches.lrucache * synapse.util.caches.response_cache * synapse.util.caches.stream_change_cache * synapse.util.caches.ttlcache pass * synapse.util.daemonize * synapse.util.patch_inline_callbacks pass `no-untyped-defs` * synapse.util.versionstring Additional typing in synapse.util.metrics. Didn't get this to pass `no-untyped-defs`, think I'll need to watch #10847
This commit is contained in:
parent
6744273f0b
commit
f8d0f72b27
12 changed files with 134 additions and 73 deletions
|
@ -104,8 +104,8 @@ class ResponseCache(Generic[KV]):
|
|||
return None
|
||||
|
||||
def _set(
|
||||
self, context: ResponseCacheContext[KV], deferred: defer.Deferred
|
||||
) -> defer.Deferred:
|
||||
self, context: ResponseCacheContext[KV], deferred: "defer.Deferred[RV]"
|
||||
) -> "defer.Deferred[RV]":
|
||||
"""Set the entry for the given key to the given deferred.
|
||||
|
||||
*deferred* should run its callbacks in the sentinel logcontext (ie,
|
||||
|
@ -126,7 +126,7 @@ class ResponseCache(Generic[KV]):
|
|||
key = context.cache_key
|
||||
self.pending_result_cache[key] = result
|
||||
|
||||
def on_complete(r):
|
||||
def on_complete(r: RV) -> RV:
|
||||
# if this cache has a non-zero timeout, and the callback has not cleared
|
||||
# the should_cache bit, we leave it in the cache for now and schedule
|
||||
# its removal later.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue