Update of /cvsroot/jython/jython
In directory usw-pr-cvs1:/tmp/cvs-serv29357
Modified Files:
registry
Log Message:
Support for case sensitive imports on case-ignoring filesystem
(like windows).
Index: registry
===================================================================
RCS file: /cvsroot/jython/jython/registry,v
retrieving revision 2.13
retrieving revision 2.14
diff -C2 -r2.13 -r2.14
*** registry 2001/05/28 16:56:37 2.13
--- registry 2001/06/04 10:43:32 2.14
***************
*** 56,59 ****
--- 56,67 ----
#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
|