From: <fwi...@us...> - 2009-06-03 23:55:13
|
Revision: 6441 http://jython.svn.sourceforge.net/jython/?rev=6441&view=rev Author: fwierzbicki Date: 2009-06-03 23:55:10 +0000 (Wed, 03 Jun 2009) Log Message: ----------- Forgot to add a test for http://bugs.jython.org/issue1354 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-06-03 07:53:04 UTC (rev 6440) +++ trunk/jython/Lib/test/test_codeop.py 2009-06-03 23:55:10 UTC (rev 6441) @@ -149,6 +149,10 @@ ai("9+ \\","eval") #ai("lambda z: \\","eval") + #Did not work in Jython 2.5rc2 see first issue in + # http://bugs.jython.org/issue1354 + ai("if True:\n if True:\n if True: \n") + def test_invalid(self): ai = self.assertInvalid ai("a b") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |