From: <cg...@us...> - 2009-01-17 18:42:18
|
Revision: 5939 http://jython.svn.sourceforge.net/jython/?rev=5939&view=rev Author: cgroves Date: 2009-01-17 18:42:14 +0000 (Sat, 17 Jan 2009) Log Message: ----------- Shoulda gone out with r5607. Modified Paths: -------------- trunk/jython/Lib/test/test_builtin_jy.py trunk/jython/src/org/python/modules/Setup.java Modified: trunk/jython/Lib/test/test_builtin_jy.py =================================================================== --- trunk/jython/Lib/test/test_builtin_jy.py 2009-01-17 18:31:06 UTC (rev 5938) +++ trunk/jython/Lib/test/test_builtin_jy.py 2009-01-17 18:42:14 UTC (rev 5939) @@ -162,7 +162,7 @@ def test_names(self): for name in sys.builtin_module_names: - if name != '_jython' and name not in ('time', '_random', 'array', '_collections', '_ast'): + if name not in ('time', '_random', 'array', '_collections', '_ast'): module = __import__(name) self.assertEqual(name, module.__name__) Modified: trunk/jython/src/org/python/modules/Setup.java =================================================================== --- trunk/jython/src/org/python/modules/Setup.java 2009-01-17 18:31:06 UTC (rev 5938) +++ trunk/jython/src/org/python/modules/Setup.java 2009-01-17 18:42:14 UTC (rev 5939) @@ -41,7 +41,6 @@ "_codecs", "imp", "ucnhash", - "_jython", "_new:org.python.modules._newmodule", "_weakref:org.python.modules._weakref.WeakrefModule", "errno", This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |