Update of /cvsroot/jython/jython/org/python/parser
In directory usw-pr-cvs1:/tmp/cvs-serv32519
Modified Files:
python.jjt
Log Message:
Forgot to enable UNICODE support in the lexer. This makes charsets like
"~[\n]" as expected.
Index: python.jjt
===================================================================
RCS file: /cvsroot/jython/jython/org/python/parser/python.jjt,v
retrieving revision 2.14
retrieving revision 2.15
diff -C2 -r2.14 -r2.15
*** python.jjt 2001/07/20 13:37:43 2.14
--- python.jjt 2001/07/21 09:15:24 2.15
***************
*** 11,14 ****
--- 11,15 ----
// DEBUG_TOKEN_MANAGER = true;
USER_CHAR_STREAM = true;
+ UNICODE_INPUT = true;
}
|