Update of /cvsroot/jython/jython/Tools/jythonc/jast
In directory usw-pr-cvs1:/tmp/cvs-serv28538/jast
Modified Files:
Statement.py
Log Message:
Implementation of the new AST tree.
Index: Statement.py
===================================================================
RCS file: /cvsroot/jython/jython/Tools/jythonc/jast/Statement.py,v
retrieving revision 2.6
retrieving revision 2.7
diff -C2 -d -r2.6 -r2.7
*** Statement.py 26 Nov 2001 15:21:09 -0000 2.6
--- Statement.py 30 May 2002 16:20:13 -0000 2.7
***************
*** 141,145 ****
out.writeln("/* %s", lines[0])
for line in lines[1:-1]:
! out.writeln(line)
out.writeln("%s */", lines[-1])
--- 141,145 ----
out.writeln("/* %s", lines[0])
for line in lines[1:-1]:
! out.writeln(line.replace("\\", "\\\\"))
out.writeln("%s */", lines[-1])
|