[pypy-svn] r33418 - pypy/branch/even-more-config3/pypy/config

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Oct 18 21:56:24 CEST 2006


Author: cfbolz
Date: Wed Oct 18 21:56:23 2006
New Revision: 33418

Modified:
   pypy/branch/even-more-config3/pypy/config/config.py
Log:
there is no way to make a cmdline option out of an OptionDescription anymore.


Modified: pypy/branch/even-more-config3/pypy/config/config.py
==============================================================================
--- pypy/branch/even-more-config3/pypy/config/config.py	(original)
+++ pypy/branch/even-more-config3/pypy/config/config.py	Wed Oct 18 21:56:23 2006
@@ -376,12 +376,11 @@
         return self.default
 
 class OptionDescription(object):
-    def __init__(self, name, doc, children, cmdline=DEFAULT_OPTION_NAME):
+    def __init__(self, name, doc, children):
         self._name = name
         self.doc = doc
         self._children = children
         self._build()
-        self.cmdline = cmdline
 
     def _build(self):
         for child in self._children:



More information about the Pypy-commit mailing list