[pypy-svn] r15430 - pypy/dist/pypy/translator/goal

hpk at codespeak.net hpk at codespeak.net
Sat Jul 30 20:04:43 CEST 2005


Author: hpk
Date: Sat Jul 30 20:04:42 2005
New Revision: 15430

Modified:
   pypy/dist/pypy/translator/goal/translate_pypy.py
Log:
add memory and memory.lladdress to the list of
accepted module names before forking


Modified: pypy/dist/pypy/translator/goal/translate_pypy.py
==============================================================================
--- pypy/dist/pypy/translator/goal/translate_pypy.py	(original)
+++ pypy/dist/pypy/translator/goal/translate_pypy.py	Sat Jul 30 20:04:42 2005
@@ -128,7 +128,8 @@
 
 def assert_rpython_mostly_not_imported(): 
     prefix = 'pypy.rpython.'
-    oknames = 'rarithmetic extfunctable lltype objectmodel error'.split() 
+    oknames = ('rarithmetic memory memory.lladdress extfunctable ' 
+               'lltype objectmodel error'.split())
     wrongimports = []
     for name, module in sys.modules.items(): 
         if module is not None and name.startswith(prefix): 



More information about the Pypy-commit mailing list