Пример #1
0
    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)
Пример #2
0
 def __init__(self):
     Command.__init__(self)
     self.tarname = None
     self.topdir = None
Пример #3
0
 def __init__(self, *a, **kw):
     Command.__init__(self, *a, **kw)
     self.section_writer = SectionWriter()
     self.build_type = None
Пример #4
0
 def __init__(self):
     Command.__init__(self)
Пример #5
0
 def __init__(self, *a, **kw):
     Command.__init__(self, *a, **kw)