[pypy-svn] r35576 - in pypy/dist/pypy: config objspace

arigo at codespeak.net arigo at codespeak.net
Mon Dec 11 15:34:23 CET 2006


Author: arigo
Date: Mon Dec 11 15:34:22 2006
New Revision: 35576

Added:
   pypy/dist/pypy/objspace/taint.py
      - copied, changed from r35575, pypy/dist/pypy/objspace/sand.py
Removed:
   pypy/dist/pypy/objspace/sand.py
Modified:
   pypy/dist/pypy/config/pypyoption.py
Log:
Rename this objspace sand => taint.  Better matches what it does,
and avoids conflict with 's<tab>' completion that used to give 'std' :-)

Also restore the now-taint objspace name from pypyoption.py, where
the recent config branch merge killed it by mistake.


Modified: pypy/dist/pypy/config/pypyoption.py
==============================================================================
--- pypy/dist/pypy/config/pypyoption.py	(original)
+++ pypy/dist/pypy/config/pypyoption.py	Mon Dec 11 15:34:22 2006
@@ -20,7 +20,8 @@
                               
 pypy_optiondescription = OptionDescription("objspace", "Object Space Option", [
     ChoiceOption("name", "Object Space name",
-                 ["std", "flow", "logic", "thunk", "cpy", "dump"], "std",
+                 ["std", "flow", "logic", "thunk", "cpy", "dump", "taint"],
+                 "std",
                  requires = {
                      "thunk": [("objspace.geninterp", False)],
                      "logic": [("objspace.geninterp", False),



More information about the Pypy-commit mailing list