Update of /cvsroot/jython/jython
In directory usw-pr-cvs1:/tmp/cvs-serv9528
Modified Files:
registry
Log Message:
Added description of properties used by os.environ and os.system().
By Kevin Butler.
Index: registry
===================================================================
RCS file: /cvsroot/jython/jython/registry,v
retrieving revision 2.15
retrieving revision 2.16
diff -C2 -d -r2.15 -r2.16
*** registry 2001/07/25 18:48:42 2.15
--- registry 2001/11/14 16:26:40 2.16
***************
*** 95,96 ****
--- 95,113 ----
# 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. Currently supported are:
+ #
+ # shell (default)
+ # Generate the environment by executing shell commands
+ # appropriate to the os environment.
+ #
+ # None
+ # Do not provide any environment or system() support.
+ #python.environment=shell
+
+ # python.os controls the commands used to generate the environment.
+ # default is to choose commands based on the Java property "os.name".
+ # Some generic values are also supported: 'nt', 'dos', 'mac' and 'unix'.
+ #python.os=None
+
|