[pypy-svn] r15244 - pypy/branch/pypy-newobjspace/interpreter

hpk at codespeak.net hpk at codespeak.net
Thu Jul 28 15:57:23 CEST 2005


Author: hpk
Date: Thu Jul 28 15:57:23 2005
New Revision: 15244

Modified:
   pypy/branch/pypy-newobjspace/interpreter/baseobjspace.py
Log:
nofaking enables uselibfile as well


Modified: pypy/branch/pypy-newobjspace/interpreter/baseobjspace.py
==============================================================================
--- pypy/branch/pypy-newobjspace/interpreter/baseobjspace.py	(original)
+++ pypy/branch/pypy-newobjspace/interpreter/baseobjspace.py	Thu Jul 28 15:57:23 2005
@@ -108,17 +108,15 @@
                  uselibfile=False,
                  parser="recparser", 
                  compiler="pyparse"): 
-        
         "NOT_RPYTHON: Basic initialization of objects."
         self.fromcache = InternalSpaceCache(self).getorbuild
         self.threadlocals = ThreadLocals()
         # set recursion limit
         # sets all the internal descriptors
-        
         self.options = ObjSpaceOptions() 
         self.options.parser = parser 
         self.options.nofaking = nofaking
-        self.options.uselibfile = uselibfile 
+        self.options.uselibfile = uselibfile or nofaking
         self.options.compiler = compiler 
         self.options.usemodules = usemodules 
         self.initialize()



More information about the Pypy-commit mailing list