Ejemplo n.º 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)
Ejemplo n.º 2
0
 def __init__(self):
     Command.__init__(self)
     self.tarname = None
     self.topdir = None
Ejemplo n.º 3
0
Archivo: build.py Proyecto: dagss/Bento
 def __init__(self, *a, **kw):
     Command.__init__(self, *a, **kw)
     self.section_writer = SectionWriter()
     self.build_type = None
Ejemplo n.º 4
0
 def __init__(self):
     Command.__init__(self)
Ejemplo n.º 5
0
 def __init__(self, *a, **kw):
     Command.__init__(self, *a, **kw)