def __init__(self): Command.__init__(self) self._user_opt_groups = {} def _dummy(self, o, a): pass self.option_callback = _dummy self.user_data = {} # As the configure command line handling is customized from # the script file (flags, paths variables), we cannot just # call set_options_parser, and we set it up manually instead self.reset_parser() for opt in self.opts: self.parser.add_option(opt)
def __init__(self): Command.__init__(self) self.tarname = None self.topdir = None
def __init__(self, *a, **kw): Command.__init__(self, *a, **kw) self.section_writer = SectionWriter() self.build_type = None
def __init__(self): Command.__init__(self)
def __init__(self, *a, **kw): Command.__init__(self, *a, **kw)