0

我目前正在开发 wep.py 应用程序。这是我的 web 应用程序,它与 web.py 和 wsgi 绑定。

根/main.py

import web
import sys
import imp
import os

sys.path.append(os.path.dirname(__file__))

#from module import module
from exam import exam
urls = (
    '/exam', 'exam'
)

application = web.application(urls, globals(), autoreload = True).wsgifunc()

我的应用程序在根目录的 module.py 中有一个名为 module 的抽象类,其目的是由模块继承。

根/模块.py

class module:
    def fetchURL(self, url):
        # ...
        return content

称为“exam”的较低级别模块将继承模块

根/考试/初始化.py

from module import module

class exam(module):
    def getResults(self):
        # error occurs here
        self.fetchURL('math.json')

当我调用父方法时,web.py 引发异常

WalkerError:('意外的节点类型',339)

环境:Python 2.5

我该如何解决这个问题?谢谢

// 编辑 7 月 3 日 10:22 GMT+0

堆栈跟踪如下

 mod_wsgi (pid=1028): Exception occurred processing WSGI script 'D:/py/labs_library/index.py'.
 Traceback (most recent call last):
   File "D:\csvn\Python25\lib\site-packages\web\application.py", line 277, in wsgi
     result = self.handle_with_processors()
   File "D:\csvn\Python25\lib\site-packages\web\application.py", line 247, in handle_with_processors
     return process(self.processors)
   File "D:\csvn\Python25\lib\site-packages\web\application.py", line 244, in process
     raise self.internalerror()
   File "D:\csvn\Python25\lib\site-packages\web\application.py", line 467, in internalerror
     return debugerror.debugerror()
   File "D:\csvn\Python25\lib\site-packages\web\debugerror.py", line 305, in debugerror
     return web._InternalError(djangoerror())
   File "D:\csvn\Python25\lib\site-packages\web\debugerror.py", line 290, in djangoerror
     djangoerror_r = Template(djangoerror_t, filename=__file__, filter=websafe)
   File "D:\csvn\Python25\lib\site-packages\web\template.py", line 845, in __init__
     code = self.compile_template(text, filename)
   File "D:\csvn\Python25\lib\site-packages\web\template.py", line 924, in compile_template
     ast = compiler.parse(code)
   File "D:\csvn\Python25\lib\compiler\transformer.py", line 51, in parse
     return Transformer().parsesuite(buf)
   File "D:\csvn\Python25\lib\compiler\transformer.py", line 128, in parsesuite
     return self.transform(parser.suite(text))
   File "D:\csvn\Python25\lib\compiler\transformer.py", line 124, in transform
     return self.compile_node(tree)
   File "D:\csvn\Python25\lib\compiler\transformer.py", line 167, in compile_node
     raise WalkerError, ('unexpected node type', n)
 WalkerError: ('unexpected node type', 339)

如果可能的话,我想关闭模板功能,因为我仅将 python 用于移动应用程序的 JSON 输出。

4

1 回答 1

0

如果您创建 python 模块,则应__init__.py在层次结构顶部添加:

dvedit/
  __init__.py
  clipview.py
  filters/
    __init__.py

这意味着在将通过导入的每个目录中都from ... import ...应该有__init__.py文件。

提供更多信息:http ://wiki.cython.org/PackageHierarchy

于 2012-07-03T10:30:54.937 回答