From: <fwi...@us...> - 2008-10-16 14:28:01
|
Revision: 5425 http://jython.svn.sourceforge.net/jython/?rev=5425&view=rev Author: fwierzbicki Date: 2008-10-16 14:27:55 +0000 (Thu, 16 Oct 2008) Log Message: ----------- This basic functionality is well tested. Removed Paths: ------------- trunk/jython/bugtests/test109.py Deleted: trunk/jython/bugtests/test109.py =================================================================== --- trunk/jython/bugtests/test109.py 2008-10-16 14:26:23 UTC (rev 5424) +++ trunk/jython/bugtests/test109.py 2008-10-16 14:27:55 UTC (rev 5425) @@ -1,13 +0,0 @@ -""" -Check looping over a dict. -""" - -import support - -L = [] - -for x in {3:'d', 2:'c', 1:'b', 0:'a'}: - L.append(x) -L.sort() -if L != [0, 1, 2, 3]: - support.TestError("Looping over dict should work") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |