示例#1
0
 def show_errorlog(self):
     if self.error_output:
         output_dialog = TextEditor(self.error_output,
                                    title=_("Profiler output"),
                                    readonly=True,
                                    parent=self)
         output_dialog.resize(700, 500)
         output_dialog.exec_()
示例#2
0
 def show_log(self):
     if self.output:
         output_dialog = TextEditor(self.output,
                                    title=_("Pylint output"),
                                    parent=self,
                                    readonly=True)
         output_dialog.resize(700, 500)
         output_dialog.exec_()
示例#3
0
 def show_log(self):
     """Show process output log."""
     if self.output:
         output_dialog = TextEditor(
             self.output,
             title=_("Profiler output"),
             readonly=True,
             parent=self,
         )
         output_dialog.resize(700, 500)
         output_dialog.exec_()
示例#4
0
 def show_log(self):
     """
     Show output log dialog.
     """
     if self.output:
         output_dialog = TextEditor(self.output,
                                    title=_("Code analysis output"),
                                    parent=self,
                                    readonly=True)
         output_dialog.resize(700, 500)
         output_dialog.exec_()