!7 lib 1400166 // jython 2.7 import org.python.core.*; import org.python.util.*; p-exp { time "Make Interpreter" { PythonInterpreter.initialize(new Properties, litprop("python.path" := f2s(userDir("dev/AIRIS_Public-master"))), new S[0]); new PythonInterpreter py; } time "Test Interpreter" { assertEqualsVerbose("3", str(py.eval("1+2"))); } print("System state: " + py.getSystemState()); py.exec(linesLL( "from constants import *", "from airis_jython import AIRIS" )); }