|
From: Frank W. <fwi...@gm...> - 2009-07-18 13:16:36
|
On Sat, Jul 18, 2009 at 3:05 AM, Markus Banfi<mar...@gm...> wrote: > Jython 2.5 comes with JLine per default. > > I would prefer to use the interactive interpreter with rlwrap. It > seems that rlwrap is not working if JLine is active. > In Scala I would use rlwrap scala -Xnojline. > Is there a similar option for Jython to disable JLine? You can set the jython python.console to org.python.util.InteractiveConsole which was the default in Jython 2.2. You can set properties like this via the command line like: jython -Dpython.console=org.python.util.InteractiveConsole or change the property in your local registry. See http://wiki.python.org/jython/UserGuide#the-jython-registry -Frank |