def.py からすべての定義をインポートするメイン スクリプトである test.py という名前のスクリプトがあります。
def.py
def test():
print AdminApp.list() #Prints the applications installed
#EndDef
そしてtest.py
import sys
from def import *
test()
これにより、AdminApp オブジェクトが有効な関数、キーワード、または変数として識別できないことを示す NameError がスローされます。
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
方向性は?