From: <fwi...@us...> - 2009-08-16 02:51:14
|
Revision: 6672 http://jython.svn.sourceforge.net/jython/?rev=6672&view=rev Author: fwierzbicki Date: 2009-08-16 02:51:07 +0000 (Sun, 16 Aug 2009) Log Message: ----------- Bugfix for test ast generation code. Modified Paths: -------------- trunk/jython/Lib/test/test_ast.py Modified: trunk/jython/Lib/test/test_ast.py =================================================================== --- trunk/jython/Lib/test/test_ast.py 2009-08-16 02:49:27 UTC (rev 6671) +++ trunk/jython/Lib/test/test_ast.py 2009-08-16 02:51:07 UTC (rev 6672) @@ -297,7 +297,7 @@ print kind+"_results = [" for s in statements: print repr(to_tuple(compile(s, "?", kind, 0x400)))+"," - print "]" + print "]" print "main()" raise SystemExit test_main() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |