1

我最近尝试将我的 GAE 项目从 python2.5 迁移到 python2.7。不幸的是,我在 gaesessions 所需的 appengine_config.py 文件中遇到了一些问题。

我不知道问题是在 GAE 的部分还是在会话的部分,但现在我认为它在会话方面,因为我能够打印出 environ 变量,但不是 my_start_response 变量的类型,同时玩弄哪里问题是。

这是问题:

Traceback (most recent call last):
  File "c:\Program Files (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 195, in Handle
    result = handler(dict(self._environ), self._StartResponse)
  File "d:\Documents\dna_manip\gaesessions\__init__.py", line 472, in __call__
    return self.app(environ, my_start_response)
TypeError: 'NoneType' object is not callable

以前有人处理过这个吗?我觉得我在迁移项目时搞砸了。

4

1 回答 1

0

没关系 - 我搞砸了。在google app engine上使用web.py和python2.7时,需要使用application.wsgifunc()函数,而不是application.cgirun()

于 2012-08-24T03:03:36.847 回答