From: Finn B. <bc...@us...> - 2001-01-17 16:54:19
|
Update of /cvsroot/jython/jython/Lib In directory usw-pr-cvs1:/tmp/cvs-serv20599 Modified Files: javaos.py Log Message: Added os.linesep. I already added this while using the beopen cvs, but it must have been lost during the transition to SF. Index: javaos.py =================================================================== RCS file: /cvsroot/jython/jython/Lib/javaos.py,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** javaos.py 2000/10/11 13:03:44 2.3 --- javaos.py 2001/01/17 16:54:18 2.4 *************** *** 13,16 **** --- 13,17 ---- pathsep = java.io.File.pathSeparator defpath = '.' + linesep = java.lang.System.getProperty('line.separator') #I can do better than this... |