Update of /cvsroot/jython/jython/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv5486
Modified Files:
javaos.py
Log Message:
Define "extsep".
Index: javaos.py
===================================================================
RCS file: /cvsroot/jython/jython/Lib/javaos.py,v
retrieving revision 2.12
retrieving revision 2.13
diff -C2 -d -r2.12 -r2.13
*** javaos.py 2001/11/28 17:31:50 2.12
--- javaos.py 2002/01/07 12:00:49 2.13
***************
*** 45,48 ****
--- 45,52 ----
defpath = '.'
linesep = java.lang.System.getProperty('line.separator')
+ if sep=='.':
+ extsep = '/'
+ else:
+ extsep = '.'
def _exit(n=0):
|