コード例 #1
0
ファイル: config.py プロジェクト: thermitegod/terminator3
    def __init__(self):
        """Class initialiser"""

        Borg.__init__(self, self.__class__.__name__)

        self.prepare_attributes()
        self.command_line_options = optionparse.options
        self.load()
コード例 #2
0
ファイル: config.py プロジェクト: PyCManager/terminator
    def __init__(self):
        """Class initialiser"""

        Borg.__init__(self, self.__class__.__name__)

        self.prepare_attributes()
        from terminatorlib.optionparse import options
        self.command_line_options = options
        self.load()
コード例 #3
0
 def __init__(self):
     Borg.__init__(self, self.__class__.__name__)
コード例 #4
0
    def __init__(self):
        """Class initialiser"""

        Borg.__init__(self, self.__class__.__name__)
        self.prepare_attributes()
コード例 #5
0
ファイル: testborg.py プロジェクト: vogt420/terminator-1
 def __init__(self):
     Borg.__init__(self, self.__class__.__name__)
     self.prepare_attributes()
コード例 #6
0
ファイル: testborg.py プロジェクト: albfan/terminator
 def __init__(self):
     Borg.__init__(self, self.__class__.__name__)
     self.prepare_attributes()
コード例 #7
0
ファイル: ipc.py プロジェクト: PyCManager/terminator
 def __init__(self):
     """Class initialiser"""
     Borg.__init__(self, self.__class__.__name__)
     self.prepare_attributes()
     dbus.service.Object.__init__(self, self.bus_name, BUS_PATH)