[pypy-svn] r10058 - pypy/dist/pypy/tool

hpk at codespeak.net hpk at codespeak.net
Tue Mar 22 16:30:13 CET 2005


Author: hpk
Date: Tue Mar 22 16:30:13 2005
New Revision: 10058

Modified:
   pypy/dist/pypy/tool/option.py
Log:
make py.py -h work somewhat again


Modified: pypy/dist/pypy/tool/option.py
==============================================================================
--- pypy/dist/pypy/tool/option.py	(original)
+++ pypy/dist/pypy/tool/option.py	Tue Mar 22 16:30:13 2005
@@ -19,8 +19,9 @@
 
     options.append(make_option(
         '-o', '--objspace', action="callback",
-        callback=objspace_callback, type="string",
+        callback=objspace_callback,  type="string", dest="objspacename",
         help="object space to run PyPy on."))
+
     options.append(make_option(
         '--oldstyle', action="store_true",dest="oldstyle",
         help="enable oldstyle classes as default metaclass (std objspace only)"))    



More information about the Pypy-commit mailing list