jack

Results 2 issues of jack

def fib_cached(n, cache={}): if n < 2: return n try: val = cache[n] except KeyError: val = fib(n-2) + fib(n-1) cache[n] = val return val Maybe there is a typo...

2019年春节使用时,并没有发现有什么问题,之后再次使用时,经常报jsondecoder 错误,看了下源码发现,query/job.py get_result方法中 result = response.json().get('data.result') 返回None,response 并不总是被expand_class 重写json方法,导致result为None,希望作者能确认下 ![image](https://user-images.githubusercontent.com/5524785/72667686-705f1000-3a59-11ea-9ced-ba38a9896f31.png)