Revision: 5411
http://jython.svn.sourceforge.net/jython/?rev=5411&view=rev
Author: fwierzbicki
Date: 2008-10-16 01:48:49 +0000 (Thu, 16 Oct 2008)
Log Message:
-----------
another "will never work" test. Deleted.
Removed Paths:
-------------
trunk/jython/bugtests/test096.py
Deleted: trunk/jython/bugtests/test096.py
===================================================================
--- trunk/jython/bugtests/test096.py 2008-10-15 20:55:46 UTC (rev 5410)
+++ trunk/jython/bugtests/test096.py 2008-10-16 01:48:49 UTC (rev 5411)
@@ -1,29 +0,0 @@
-"""
-Test the imp module (unfinished)
-"""
-
-import support
-import sys
-
-""" Does not work, will never work.
-
-import imp
-
-i = imp.find_module("test096j")
-
-
-r = imp.load_module("test096j", i[0], i[1], i[2])
-
-print r
-print dir(r)
-print sys.modules['test096j']
-
-
-i = imp.find_module("test096j")
-r = imp.load_module("test096j", i[0], i[1], i[2])
-
-print r
-print dir(r)
-print sys.modules['test096j']
-
-"""
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|