func(*EXPR) is valid Python syntax, really...

pull/115/head
Paul "LeoNerd" Evans 2015-03-20 17:28:33 +00:00
parent 4848fdbf59
commit b1022ed8b5
1 changed files with 1 additions and 2 deletions

View File

@ -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)