Update of /cvsroot/jython/jython/org/python/core
In directory usw-pr-cvs1:/tmp/cvs-serv19353
Modified Files:
imp.java
Log Message:
Integrating[ #478763 ] import case sensitivity.
Index: imp.java
===================================================================
RCS file: /cvsroot/jython/jython/org/python/core/imp.java,v
retrieving revision 2.58
retrieving revision 2.59
diff -C2 -d -r2.58 -r2.59
*** imp.java 2001/12/20 16:44:06 2.58
--- imp.java 2001/12/21 00:20:17 2.59
***************
*** 448,452 ****
}
! private static boolean caseok(File file, String filename, int namelen) {
if (Options.caseok)
return true;
--- 448,452 ----
}
! static boolean caseok(File file, String filename, int namelen) {
if (Options.caseok)
return true;
|