Revision: 5426
http://jython.svn.sourceforge.net/jython/?rev=5426&view=rev
Author: fwierzbicki
Date: 2008-10-16 14:29:48 +0000 (Thu, 16 Oct 2008)
Log Message:
-----------
Basic dict functionality that is well tested in the unit tests.
Removed Paths:
-------------
trunk/jython/bugtests/test110.py
Deleted: trunk/jython/bugtests/test110.py
===================================================================
--- trunk/jython/bugtests/test110.py 2008-10-16 14:27:55 UTC (rev 5425)
+++ trunk/jython/bugtests/test110.py 2008-10-16 14:29:48 UTC (rev 5426)
@@ -1,10 +0,0 @@
-"""
-Check "in" on a dict.
-"""
-
-import support
-
-if 1 in {2:2, 3:3}:
- raise support.TestError("in keyword an a dict should work")
-if 2 not in {2:2, 3:3}:
- raise support.TestError("in keyword an a dict should work")
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|