[pypy-svn] r58182 - in pypy/dist/pypy/interpreter/test: . demomixedmod mixedmodule

arigo at codespeak.net arigo at codespeak.net
Tue Sep 16 19:16:53 CEST 2008


Author: arigo
Date: Tue Sep 16 19:16:52 2008
New Revision: 58182

Added:
   pypy/dist/pypy/interpreter/test/demomixedmod/
      - copied from r58164, pypy/dist/pypy/interpreter/test/mixedmodule/
Removed:
   pypy/dist/pypy/interpreter/test/mixedmodule/
Modified:
   pypy/dist/pypy/interpreter/test/test_appinterp.py
Log:
Rename this to avoid confusion with the pypy.mixedmodule module.


Modified: pypy/dist/pypy/interpreter/test/test_appinterp.py
==============================================================================
--- pypy/dist/pypy/interpreter/test/test_appinterp.py	(original)
+++ pypy/dist/pypy/interpreter/test/test_appinterp.py	Tue Sep 16 19:16:52 2008
@@ -111,9 +111,9 @@
 
 class TestMixedModule: 
     def test_accesses(self): 
-        space = self.space 
-        import mixedmodule 
-        w_module = mixedmodule.Module(space, space.wrap('mixedmodule'))
+        space = self.space
+        import demomixedmod 
+        w_module = demomixedmod.Module(space, space.wrap('mixedmodule'))
         space.appexec([w_module], """
             (module): 
                 assert module.value is None 



More information about the Pypy-commit mailing list