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

arigo at codespeak.net arigo at codespeak.net
Mon May 8 23:16:28 CEST 2006


Author: arigo
Date: Mon May  8 23:16:27 2006
New Revision: 26982

Modified:
   pypy/dist/pypy/translator/goal/targetpypystandalone.py
Log:
Disable "translate.pypy --stackless" unless you remove the 'raise'
manually for experimentation.  This is to prevent the cron job on snake
to try for itself and explode all the RAM and swap.



Modified: pypy/dist/pypy/translator/goal/targetpypystandalone.py
==============================================================================
--- pypy/dist/pypy/translator/goal/targetpypystandalone.py	(original)
+++ pypy/dist/pypy/translator/goal/targetpypystandalone.py	Mon May  8 23:16:27 2006
@@ -89,6 +89,7 @@
         # thread might appear twice now, but the objspace can handle this
         usemodules.append('thread')
     if options.stackless:
+        raise MemoryError("in-progress, but maybe consumes tons of memory")
         usemodules.append('stackless')
         
     space = StdObjSpace(nofaking=True,



More information about the Pypy-commit mailing list