Revision: 5406
http://jython.svn.sourceforge.net/jython/?rev=5406&view=rev
Author: fwierzbicki
Date: 2008-10-15 20:41:18 +0000 (Wed, 15 Oct 2008)
Log Message:
-----------
test_pkgimport.py already does a reasonable job of checking multiple
imports of the same .py file.
Removed Paths:
-------------
trunk/jython/bugtests/test080.py
Deleted: trunk/jython/bugtests/test080.py
===================================================================
--- trunk/jython/bugtests/test080.py 2008-10-15 20:37:54 UTC (rev 5405)
+++ trunk/jython/bugtests/test080.py 2008-10-15 20:41:18 UTC (rev 5406)
@@ -1,27 +0,0 @@
-"""
-
-"""
-
-import support
-
-def mkspam(a):
- f = open("test080m.py", "w")
- f.write("def Spam(): return '%s'" % a)
- f.close()
-
-mkspam("foo")
-
-import test080m
-spam1 = test080m.Spam()
-support.compare(spam1, "foo")
-
-import time
-time.sleep(2)
-
-mkspam("bar")
-reload(test080m)
-
-spam2 = test080m.Spam()
-support.compare(spam2, "bar")
-
-
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|