From: <fwi...@us...> - 2008-12-31 21:57:40
|
Revision: 5823 http://jython.svn.sourceforge.net/jython/?rev=5823&view=rev Author: fwierzbicki Date: 2008-12-31 21:57:35 +0000 (Wed, 31 Dec 2008) Log Message: ----------- test259.py -> test_codeop_jy.py Modified Paths: -------------- trunk/jython/Lib/test/test_codeop_jy.py Removed Paths: ------------- trunk/jython/bugtests/test259.py trunk/jython/bugtests/test259s.py Modified: trunk/jython/Lib/test/test_codeop_jy.py =================================================================== --- trunk/jython/Lib/test/test_codeop_jy.py 2008-12-31 21:56:48 UTC (rev 5822) +++ trunk/jython/Lib/test/test_codeop_jy.py 2008-12-31 21:57:35 UTC (rev 5823) @@ -171,6 +171,7 @@ ai("del (1,)") ai("del [1]") ai("del '1'") + ai("if (a == 1 and b = 2): pass") def test_filename(self): self.assertEquals(compile_("a = 1\n", "abc").co_filename, Deleted: trunk/jython/bugtests/test259.py =================================================================== --- trunk/jython/bugtests/test259.py 2008-12-31 21:56:48 UTC (rev 5822) +++ trunk/jython/bugtests/test259.py 2008-12-31 21:57:35 UTC (rev 5823) @@ -1,11 +0,0 @@ - -import support - - -try: - import test259s -except SyntaxError: - pass -else: - raise support.TestError, "Should raise a syntax error" - Deleted: trunk/jython/bugtests/test259s.py =================================================================== --- trunk/jython/bugtests/test259s.py 2008-12-31 21:56:48 UTC (rev 5822) +++ trunk/jython/bugtests/test259s.py 2008-12-31 21:57:35 UTC (rev 5823) @@ -1,9 +0,0 @@ - -var_a = 'blah' -var_b = 'halb' - -if (var_a == 'blah' and var_b = 'halb') : - print 'IT IS TRUE' -else : - print 'IT IS FALSE' - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |