[pypy-svn] r22860 - pypy/dist/pypy/translator/goal
tismer at codespeak.net
tismer at codespeak.net
Sun Jan 29 19:55:00 CET 2006
Author: tismer
Date: Sun Jan 29 19:54:58 2006
New Revision: 22860
Modified:
pypy/dist/pypy/translator/goal/targetpypystandalone.py
Log:
automatically include the stackless module if --stackless is selected
Modified: pypy/dist/pypy/translator/goal/targetpypystandalone.py
==============================================================================
--- pypy/dist/pypy/translator/goal/targetpypystandalone.py (original)
+++ pypy/dist/pypy/translator/goal/targetpypystandalone.py Sun Jan 29 19:54:58 2006
@@ -84,6 +84,8 @@
usemodules = []
if options.thread:
usemodules.append('thread')
+ if options.stackless:
+ usemodules.append('stackless')
space = StdObjSpace(nofaking=True,
compiler="ast", # interpreter/astcompiler
More information about the Pypy-commit
mailing list