私は、PythonでのAppEngineでmemcacheの内のリストを保存したいと、私は次のエラーが午前:PythonでGoogle App EngineのMemcacheにリストを保存することはできますか?
はTypeError:新しい()は、正確に4つの引数(1が指定された)をとります。
これはエラーと画像のリンクです: http://i.stack.imgur.com/we3VU.png
そして、これは私のコードです:
def get_r_post_relation(self, url, update = False) :
sufix = "r"
key = sufix + url
list_version = memcache.get(key)
if not list_version or update :
logging.error("LIST VERSION QUERY")
postobj = get_wiki_post(url)
list_version = WikiPostVersion.query().filter(WikiPostVersion.r_post == postobj.key)
memcache.set(key, list_version)
return list_version
ここにテキストを投稿するのではなく、そのエラーのスクリーンショットにリンクしたのはなぜですか? –
これはエラーです。TypeError:new()は4つの引数(1が指定された)をとります。 –
27行目はどちらですか? –