Properties jythonProps = new Properties();
jythonProps.put( "python.home", tmps.get("jython.home") );
PythonInterpreter.initialize( System.getProperties(), jythonProps, args );
PyStringMap dict = new PyStringMap();
PySystemState pysys = new PySystemState();
PythonInterpreter pi = new PythonInterpreter( dict, pysys );
// DO NOT use CommandLineUserMessageHandler here - causes infinite recursion
MessageHandlerOutputStream out = new MessageHandlerOutputStream( UserMessageHandler.INFO, rumh );