mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
func(*EXPR) is valid Python syntax, really...
This commit is contained in:
parent
4848fdbf59
commit
b1022ed8b5
@ -100,8 +100,7 @@ def cached(max_entries=1000, num_args=1):
|
||||
cache_counter.inc_misses(name)
|
||||
ret = yield orig(self, *keyargs)
|
||||
|
||||
prefill_args = keyargs + (ret,)
|
||||
prefill(*prefill_args)
|
||||
prefill(*keyargs + (ret,))
|
||||
|
||||
defer.returnValue(ret)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user