[pypy-svn] rev 634 - pypy/trunk/src/pypy

alex at codespeak.net alex at codespeak.net
Wed May 28 18:13:10 CEST 2003


Author: alex
Date: Wed May 28 18:13:09 2003
New Revision: 634

Modified:
   pypy/trunk/src/pypy/testwice.py
Log:
seem to be working now



Modified: pypy/trunk/src/pypy/testwice.py
==============================================================================
--- pypy/trunk/src/pypy/testwice.py	(original)
+++ pypy/trunk/src/pypy/testwice.py	Wed May 28 18:13:09 2003
@@ -58,9 +58,9 @@
     
     runner = unittest.TextTestRunner()
     alltests, flexible = find_tests(PYPYDIR, inc_names,  exc_names)
-    os.environ.set('OBJSPACE', '')
+    os.environ['OBJSPACE'] = ''
     runner.run(alltests)
-    os.environ.set('OBJSPACE', 'pypy.objspace.std.objspace.StdObjSpace')
+    os.environ['OBJSPACE'] = 'pypy.objspace.std.objspace.StdObjSpace'
     runner.run(flexible)
     
 if __name__ == '__main__':


More information about the Pypy-commit mailing list