[pypy-svn] r32823 - pypy/dist/pypy/translator/cli

antocuni at codespeak.net antocuni at codespeak.net
Mon Oct 2 16:17:13 CEST 2006


Author: antocuni
Date: Mon Oct  2 16:17:12 2006
New Revision: 32823

Modified:
   pypy/dist/pypy/translator/cli/database.py
Log:
Lazy initialization doesn't work with the whole interpreter, disable it for now.



Modified: pypy/dist/pypy/translator/cli/database.py
==============================================================================
--- pypy/dist/pypy/translator/cli/database.py	(original)
+++ pypy/dist/pypy/translator/cli/database.py	Mon Oct  2 16:17:12 2006
@@ -23,7 +23,7 @@
 DEBUG_CONST_INIT = False
 DEBUG_CONST_INIT_VERBOSE = False
 MAX_CONST_PER_STEP = 100
-LAZYNESS = True
+LAZYNESS = False
 
 CONST_NAMESPACE = 'pypy.runtime'
 CONST_CLASS = 'Constants'



More information about the Pypy-commit mailing list