From: Kevin J. B. <kev...@us...> - 2001-11-28 17:40:56
|
Update of /cvsroot/jython/jython In directory usw-pr-cvs1:/tmp/cvs-serv14456 Modified Files: registry Log Message: clarify comments about os and environment Index: registry =================================================================== RCS file: /cvsroot/jython/jython/registry,v retrieving revision 2.16 retrieving revision 2.17 diff -C2 -d -r2.16 -r2.17 *** registry 2001/11/14 16:26:40 2.16 --- registry 2001/11/28 17:40:54 2.17 *************** *** 96,113 **** # 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 --- 96,111 ---- # 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 |