From: <fwi...@us...> - 2009-07-28 13:29:19
|
Revision: 6595 http://jython.svn.sourceforge.net/jython/?rev=6595&view=rev Author: fwierzbicki Date: 2009-07-28 13:29:09 +0000 (Tue, 28 Jul 2009) Log Message: ----------- Only one test still failing for us - will require a large change in PythonPartial.g to fix. Modified Paths: -------------- trunk/jython/Lib/test/test_codeop.py Modified: trunk/jython/Lib/test/test_codeop.py =================================================================== --- trunk/jython/Lib/test/test_codeop.py 2009-07-27 20:39:10 UTC (rev 6594) +++ trunk/jython/Lib/test/test_codeop.py 2009-07-28 13:29:09 UTC (rev 6595) @@ -173,7 +173,10 @@ ai("a = 'a\\\n") ai("a = 1","eval") - #ai("a = (","eval") + #XXX: Current limitation in PythonPartial.g prevents this from properly + # erroring on Jython. + if not is_jython: + ai("a = (","eval") ai("]","eval") ai("())","eval") ai("[}","eval") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |