From: <fwi...@us...> - 2008-10-16 14:33:42
|
Revision: 5428 http://jython.svn.sourceforge.net/jython/?rev=5428&view=rev Author: fwierzbicki Date: 2008-10-16 14:33:33 +0000 (Thu, 16 Oct 2008) Log Message: ----------- Basic slice ops that are already well tested. Removed Paths: ------------- trunk/jython/bugtests/test112.py trunk/jython/bugtests/test113.py Deleted: trunk/jython/bugtests/test112.py =================================================================== --- trunk/jython/bugtests/test112.py 2008-10-16 14:31:14 UTC (rev 5427) +++ trunk/jython/bugtests/test112.py 2008-10-16 14:33:33 UTC (rev 5428) @@ -1,8 +0,0 @@ -""" -Check slice [::-1] -""" - -import support - -if 'abcdef'[::-1] != 'fedcba': - raise support.TestError("slice [::-1] failed") Deleted: trunk/jython/bugtests/test113.py =================================================================== --- trunk/jython/bugtests/test113.py 2008-10-16 14:31:14 UTC (rev 5427) +++ trunk/jython/bugtests/test113.py 2008-10-16 14:33:33 UTC (rev 5428) @@ -1,9 +0,0 @@ -""" -Check slice [-1:1:-1]. -""" - -import support - -if 'abcde'[-1:1:-1] != 'edc': - raise support.TestError("slice [-1:1:-1] failed %s" % 'abcde'[-1:1:-1]) - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |