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

mwh at codespeak.net mwh at codespeak.net
Fri May 12 17:26:52 CEST 2006


Author: mwh
Date: Fri May 12 17:26:50 2006
New Revision: 27140

Modified:
   pypy/dist/pypy/translator/goal/targetpypystandalone.py
Log:
--new-stackless doesn't need that much memory, it turns out.


Modified: pypy/dist/pypy/translator/goal/targetpypystandalone.py
==============================================================================
--- pypy/dist/pypy/translator/goal/targetpypystandalone.py	(original)
+++ pypy/dist/pypy/translator/goal/targetpypystandalone.py	Fri May 12 17:26:50 2006
@@ -93,8 +93,6 @@
         # thread might appear twice now, but the objspace can handle this
         usemodules.append('thread')
     if options.stackless:
-        if options.stackless != 'old':
-            raise MemoryError("in-progress; might consume tons of memory")
         usemodules.append('stackless')
         
     space = StdObjSpace(nofaking=True,



More information about the Pypy-commit mailing list