我有一个名为 test.py 的脚本,它是从 def.py 导入所有定义的主脚本。
定义文件
def test():
print AdminApp.list() #Prints the applications installed
#EndDef
和test.py
import sys
from def import *
test()
这会引发 NameError 指出 AdminApp 对象不能被识别为有效的函数、关键字或变量。
WASX7093I: Issuing message: "WASX7017E: Exception received while running file "test.py"; exception information: com.ibm.bsf.BSFException: exception from Jython:
Traceback (innermost last):
File "<string>", line 10, in ?
File "/opt/home/echkaay/wsadmin/test.py", line 3, in ?
NameError: AdminApp
有什么方向吗?