/jython/jython.conf
http://github.com/brinkman83/bashrc · Config · 111 lines · 93 code · 18 blank · 0 comment · 0 complexity · bd7d18197f4f2a36c94b4f198e9a6c78 MD5 · raw file
- # Python Registry -*- ksh -*-
- # This default registry sets many common options to their default values
- # All of these settings could be erased with no change in behavior
- # Extends the list of directories searched on module imports
- # The initial list contains the current working directory and the directory
- # of the Jython standard library.
- #python.path = /usr/lib/site-python
- # Set the directory to use for caches (currently just package information)
- # This directory should be writable by the user
- # If this is an absolute path it is used as given
- # Otherwise it is interpreted relative to sys.prefix
- # (typically the directory of this file)
- # Defaults to directory .jython-cache in the user home directory
- #python.cachedir = /home/john/.jython-cache
- # Setting this property to true disables the package scan for the cachedir.
- # Please be aware that disabling this might break some java import statements
- #python.cachedir.skip = false
- # Properties to check for initializing and updating the package cache
- # Hopefully you won't have any need to change these
- #python.packages.paths = java.class.path, sun.boot.class.path
- #python.packages.directories = java.ext.dirs
- # Set verbosity to error, warning, message, comment, or debug
- # for varying levels of informative messages from Jython. Normally
- # 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.ReadlineConsole
- #python.console.readlinelib=Editline
- # Setting this to true will cause the console to poll standard in
- # This might be helpful on systems without system-level threads
- #python.console.poll = false
- # Setting this to a valid codec name will cause the console to use a
- # different encoding when reading commands from the console.
- # The default java encoding is still used when reading python sources
- # from the filesystem.
- #python.console.encoding = us-ascii
- # Setting this to false will allow Jython to provide access to
- # non-public fields, methods, and constructors of Java objects.
- #python.security.respectJavaAccessibility = true
- # List of choices for internal tables impl (PyJavaClasses canonical map etc.),
- # these are separated through ':' and tryed from left to right.
- # For long running applications under java2, needing classes unloading,
- # in order to have jython runtime automatically discarding
- # no longer needed info and avoding memory leakage, this can be set
- # to weak or soft (=> an impl. using weak-refs or soft-refs will be used).
- #python.options.internalTablesImpl = soft
- #python.options.internalTablesImpl = weak
- # Setting this to true will force Jython will use the first module
- # found on sys.path where java File.isFile() returns true.
- # Setting this to true has no effect on unix-type filesystems.
- # On Windows/HPS+ systems, setting it to true will enable Jython-2.0
- # behaviour.
- python.options.caseok = false
- # Use this registry entry to control the list of builtin modules; you
- # can add, remove, or override builtin modules. The value for this
- # registry key is a comma separated list of module entries, each entry
- # of which has the following allowable forms:
- #
- # name
- # The module name is `name' and the class name is
- # org.python.modules.name
- #
- # name:class
- # The module name is `name' and the class name is `class' where
- # class must be a fully qualified Java class name
- #
- # name:null
- # The module `name' is removed from the list of builtin modules
- #
- # A good example would be to use a jni version of os for more
- # functionality by having an entry such as os:com.foo.jni.os
- #python.modules.builtin = whatever
- # This specifies the command used by jythonc to compile Java source
- # code, along with the complete classpath to use.
- # python.jythonc.compiler = /depot/java/plat/bin/jikes
- # python.jythonc.classpath = /usr/java1.2/jre/lib/rt.jar:/Jython/dist:.
- # python.jythonc.compileropts = +E +D -g
- # python.environment controls the type of environment support provided
- # by the os module. Default behavior for known operating systems is to
- # generate the environment by executing shell commands appropriate to
- # the operating system. For unknown operating systems, provide an
- # empty environment. Uncomment this line for an empty environment
- # on all operating systems.
- #python.environment=None
- # python.os determines operating-specific features, similar to and overriding the
- # Java property "os.name".
- # Some generic values are also supported: 'nt', 'dos', 'mac' and 'posix'.
- # Uncomment the following line for the most generic OS behavior available.
- #python.os=None