From: <nr...@us...> - 2009-01-25 21:06:09
|
Revision: 5978 http://jython.svn.sourceforge.net/jython/?rev=5978&view=rev Author: nriley Date: 2009-01-25 21:06:04 +0000 (Sun, 25 Jan 2009) Log Message: ----------- Typo fix. Modified Paths: -------------- trunk/jython/registry Modified: trunk/jython/registry =================================================================== --- trunk/jython/registry 2009-01-25 20:13:29 UTC (rev 5977) +++ trunk/jython/registry 2009-01-25 21:06:04 UTC (rev 5978) @@ -1,4 +1,4 @@ -# Python Registry -*- ksh -*- +# Python Registry -*- sh -*- # This default registry sets many common options to their default values # All of these settings could be erased with no change in behavior @@ -17,7 +17,7 @@ python.cachedir = cachedir # Setting this property to true disables the package scan for the cachedir. -# Please be aware that disabling this will break imporing * from java packages +# Please be aware that disabling this will break importing * from java packages #python.cachedir.skip = false # Properties to check for initializing and updating the package cache This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zy...@us...> - 2009-03-31 03:35:18
|
Revision: 6131 http://jython.svn.sourceforge.net/jython/?rev=6131&view=rev Author: zyasoft Date: 2009-03-31 03:35:14 +0000 (Tue, 31 Mar 2009) Log Message: ----------- Default to JLineConsole so that we have a usable readline out-of-the-box. Modified Paths: -------------- trunk/jython/registry Modified: trunk/jython/registry =================================================================== --- trunk/jython/registry 2009-03-30 23:44:23 UTC (rev 6130) +++ trunk/jython/registry 2009-03-31 03:35:14 UTC (rev 6131) @@ -36,7 +36,7 @@ # Setting this to the name of different console class, new console # features can be enabled. Readline support is such an example -#python.console=org.python.util.ReadlineConsole +python.console=org.python.util.JLineConsole #python.console.readlinelib=JavaReadline # Setting this to a valid codec name will cause the console to use a This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <otm...@us...> - 2009-04-22 22:15:23
|
Revision: 6254 http://jython.svn.sourceforge.net/jython/?rev=6254&view=rev Author: otmarhumbel Date: 2009-04-22 22:15:16 +0000 (Wed, 22 Apr 2009) Log Message: ----------- do not default to jline until it is stable enough (see http://bugs.jython.org/issue1293) Modified Paths: -------------- trunk/jython/registry Modified: trunk/jython/registry =================================================================== --- trunk/jython/registry 2009-04-22 21:13:26 UTC (rev 6253) +++ trunk/jython/registry 2009-04-22 22:15:16 UTC (rev 6254) @@ -36,7 +36,8 @@ # Setting this to the name of different console class, new console # features can be enabled. Readline support is such an example -python.console=org.python.util.JLineConsole +#python.console=org.python.util.JLineConsole +#python.console=org.python.util.ReadlineConsole #python.console.readlinelib=JavaReadline # Setting this to a valid codec name will cause the console to use a This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pj...@us...> - 2009-04-22 23:46:07
|
Revision: 6255 http://jython.svn.sourceforge.net/jython/?rev=6255&view=rev Author: pjenvey Date: 2009-04-22 23:45:41 +0000 (Wed, 22 Apr 2009) Log Message: ----------- keywordMangling option is long gone Modified Paths: -------------- trunk/jython/registry Modified: trunk/jython/registry =================================================================== --- trunk/jython/registry 2009-04-22 22:15:16 UTC (rev 6254) +++ trunk/jython/registry 2009-04-22 23:45:41 UTC (rev 6255) @@ -30,10 +30,6 @@ # this option is set from the command line. #python.verbose = message -# Setting this to true will support old 1.0 style keyword+"_" names -# This isn't needed any more due to improvements in the parser -python.deprecated.keywordMangling = false - # Setting this to the name of different console class, new console # features can be enabled. Readline support is such an example #python.console=org.python.util.JLineConsole This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |